@charset "UTF-8";
.btn-outline-dark {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.15);
    /*color: #495057;*/
    /*text-transform: uppercase;*/
    letter-spacing: 0.8px;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.btn-outline-dark:hover {
    border-color: rgba(0, 0, 0, 0.3);
    /*color: #2c3e50;*/
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-dark .bg-gradient-dark {
    background: #2f363e;
    border: 1px solid #2f363e;
    color: #ffffff !important;
    letter-spacing: 0.8px;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.btn-dark:hover .bg-gradient-dark:hover {
    background: ##344767;
    border-color: #3d4651;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(47, 54, 62, 0.4);
}

/* Usamos selectores combinados para aumentar la especificidad */
a.btn-dark.text-center:hover, 
a.btn-dark.text-center:focus,
a.btn-dark.text-center:active {
    background-color: #3d4651 !important; /* El color gris más claro que querías */
    border-color: ##344767 !important;
    color: #ffffff !important;           /* Forzamos el blanco */
    text-decoration: none !important;    /* Quitamos cualquier subrayado de link */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Esto asegura que si hay iconos o texto interno, también sean blancos */
a.btn-dark:hover * {
    color: #ffffff !important;
}

/* Esto obliga al texto a ser blanco siempre, sin importar el estado */
.btn-dark.dropdown-toggle,
.btn-dark.dropdown-toggle:hover,
.btn-dark.dropdown-toggle:focus,
.btn-dark.dropdown-toggle:active,
.btn-dark.dropdown-toggle.show {
    color: #ffffff !important;
    background-color: #344767 !important; /* El color gris más claro que querías */
    border-color: #3d4651 !important;
}

/* Solo para que cambie un poco el fondo al pasar el mouse y sepas que es un botón */
.btn-dark.dropdown-toggle:hover {
    background-color: #344767 !important;
}