.cookies-banner {
    z-index: 1060;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.5s ease-out;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.custom-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.custom-modal-title {
    margin: 0;
    font-size: 1.25rem;
}

.custom-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0 0 20px;
}

.custom-modal-body {
    padding: 20px;
}

.custom-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Estilos para los checkboxes personalizados */
.custom-form-check {
    margin-bottom: 1rem;
    padding-left: 2.5em;
    position: relative;
}

.custom-form-check-input {
    position: absolute;
    left: 0;
    width: 2em;
    height: 1.2em;
    margin-top: 0.2em;
    cursor: pointer;
}

.custom-form-check-label {
    font-weight: bold;
    cursor: pointer;
}

/* Estilos para la alerta personalizada */
.custom-alert {
    padding: 10px 15px;
    background-color: #e7f5ff;
    border: 1px solid #d0ebff;
    border-radius: 4px;
    color: #1864ab;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Modal de Cookies */
.cookies-modal .form-switch .form-check-input {
    width: 2.5em;
    height: 1.5em;
}

.cookies-modal .form-switch {
    padding-left: 3em;
}

.cookies-modal .form-check-input:checked {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

footer {
    background-color: #061631;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    transform: translateY(-3px);
}

footer h5 {
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background-color: #0d6efd;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #0d6efd !important;
    padding-left: 5px;
}

footer .text-primary {
    color: #0d6efd !important;
}

.logout-button {
    border: none !important;
}