.navbar-toggler {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none !important;
    outline: none !important;

    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;

    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6l18 18M24 6L6 24'/%3E%3C/svg%3E");
}
.nav-link:hover {
    color: white !important;
}

.dropdown-toggle-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid #fcd34d;
    /* amber-200 */
    border-radius: 5px;
    background-color: white;
    backdrop-filter: blur(6px);
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle-custom:hover {
    background-color: #fef3c7;
    /* hover amber-50 */
    color: #92400e;
}

.dropdown-btn-custom {
    display: flex;
    background: white;
    align-items: center;
    gap: 0.5rem;
    /* amber-200 */
    border-radius: 5px;
    border: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-btn-custom:hover {
    background-color: #fef3c7;
    /* hover amber-50 */
    color: #92400e;
}

.lang-active {
    background-color: #fef3c7 !important;
}

.dropdown-menu {
    border: 2px solid #fcd34d;
}


