
.notification {
    display: none;
    position: fixed;
}

.notification-container {
    position: fixed;
    top: 60px;
    right: 20px;
    width: 300px;
    z-index: 1000;
}

.alert-success-custom {
    background-color: #d4edda;
    color: #090a0a;
    border: 1px solid #141414;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.alert-error-custom {
    background-color: #f8d7da;
    color: #090a0a;
    border: 1px solid #141414;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 15px;
    background-color: #109e50;
    transition: width 0.4s ease;
}


@keyframes progressAnimation {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.header {
    padding: 10px;
}

.close-btn {
    color: #333; 
}

.brand-logo {
    margin-top: 10px;
}

.logo-img img {
    border-radius: 5px; 
    transition: transform 0.3s ease-in-out; 

}

.logo-img img:hover {
    transform: scale(1.1); 
}

.close-btn:hover {
    color: red; 
    transition: color 0.3s ease-in-out; 
}

.card-header {
    background-color: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #dee2e6; 
  }

  /* Establece el contenedor principal (body) como un contenedor flex */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  /* El contenido principal (cualquier contenido antes del footer) ocupa el espacio disponible */
  .main-content {
    flex: 1;
  }
  
  /* El footer siempre está al fondo */
  .footer {
    background-color: #f8f9fa; /* Color de fondo opcional */
    text-align: center;
    padding: 20px;
    margin-top: auto; /* Empuja el footer hacia abajo */
  }

  