/* ACTC Logo Styles */
.actc-logo-container {
  width: 93px !important;
  height: 93px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin: 1px 0;
}

.actc-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10%;
  transition: all 0.3s ease;
}

.actc-logo-container:hover {
  transform: scale(1.1);
}

.actc-logo:hover {
  box-shadow: 0 0 10px rgba(213, 0, 0, 0.5);
}

/* Tamaños alternativos del logo */
.actc-logo-container.size-small {
  width: 24px;
  height: 24px;
}

.actc-logo-container.size-medium {
  width: 40px;
  height: 40px;
}

.actc-logo-container.size-large {
  width: 64px;
  height: 64px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .actc-logo-container {
    width: 28px !important;
    height: 28px !important;
  }
  
  .actc-logo-container.size-small {
    width: 20px;
    height: 20px;
  }
  
  .actc-logo-container.size-medium {
    width: 32px;
    height: 32px;
  }
  
  .actc-logo-container.size-large {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .actc-logo-container {
    width: 24px !important;
    height: 24px !important;
  }
}
