/* Tailwind ile Uyumlu Navbar Stilleri */

.header-nav-main .nav-link {
    color: #000000 !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.header-nav-main .nav-link:hover {
    background-color: #FFD700 !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

.header-nav-main .dropdown-toggle::after {
    margin-left: 0.25rem;
}

.header-nav-main .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid #FFD700 !important;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.header-nav-main .dropdown-item {
    color: #000000 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}

.header-nav-main .dropdown-item:hover {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

/* Müşteri Girişi Butonu */
.bg-yellow-400 {
    background-color: #FFD700 !important;
    color: #000000 !important;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.bg-yellow-400:hover {
    background-color: #E0B800 !important;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
