

/* İkonların görünürlüğünü zorla */
.navbar-custom i {
    display: inline-block !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

/* Modern Nav Tasarımı */
.navbar-custom {
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); /* Hafif modern gölge */
    transition: all 0.3s ease;
}

.navbar-custom .nav-link {
    font-weight: 500;
    color: #4a4a4a !important;
    padding: 0.8rem 1rem !important;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.navbar-custom .nav-link:hover, 
.navbar-custom .nav-link.active {
    color: #0d6efd !important; /* Bootstrap Primary rengi */
    border-bottom-color: #0d6efd;
}
.nav-link i, .dropdown-item i {
    width: 20px; /* İkonların hepsinin aynı hizada durmasını sağlar */
    text-align: center;
}