.navbar-nav .nav-link {
    color: #ffffff;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    padding: 10px 15px;
    margin-right: 5px;
    font-weight: bold;
    font-size: 20px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(71 70 70 / 88%);}

    .navbar-nav .nav-link {
        color: #fff; /* Varsayılan renk */
        transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease; /* Geçiş ekledik */
    }
    
    .navbar-nav .nav-link:hover {
        color: #cc5b17 !important;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0.25rem;
        transform: scale(1.05); /* Hafif büyütme efekti */
    }

.navbar-nav .nav-link.active {
    color: #ca935d !important;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}

.modern-brand {
    font-family: 'Roboto', sans-serif; /* Modern bir yazı tipi */
    font-size: 16px; /* Büyük ve dikkat çekici yazı boyutu */
    font-weight: 700; /* Kalın yazı */
    color: #2c3e50!important; /* Yazı rengini sabit koyu gri tutar */
    position: relative; /* Alt çizgi efekti için gerekli */
    text-decoration: none; /* Alt çizgiyi kaldırır */
    transition: color 0.3s ease-in-out; /* Renk geçişlerini yumuşak yapar */
}

.modern-brand::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #424242, #ff7825); /* Siyah-turuncu geçiş */
    transition: width 0.5s ease-in-out, background 0.5s ease-in-out; /* Genişleme ve renk geçişi */
}

.modern-brand:hover::after {
    width: 100%; /* Alt çizgi tam genişliğe ulaşır */
    background: linear-gradient(90deg, #424242, #ff7825); /* Siyah-turuncu animasyonu devam eder */
}




.dropdown-menu {
    background-color: #1f3044;
    border: 1px solid #2a3d54;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    border-radius: 0.25rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #2a3d54;
    color: #ffffff;
}

.dropdown-item.active {
    background-color: #ca935d;
    color: #ffffff;
}

.navbar .dropdown-toggle::after {
    border-top-color: #ffffff;
}

.dropdown-menu .dropdown-menu {
    margin-left: 0.25rem;
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    background-color: #2a3d54;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #34495e;
}

.list-group-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    font-size: 1.0rem;
    padding: 15px;
}

.list-group-item a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.list-group-item a:hover {
    color: #074991;
}