html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* MODERN NAVIGASYON CSS */

/* Navigasyon Linkleri */
.modern-nav-link {
    font-weight: 600 !important;
    color: #444 !important;
    font-size: 0.95rem;
    padding: 0.8rem 1rem !important;
    border-radius: 30px;
    transition: all 0.2s;
    white-space: nowrap;
}

    .modern-nav-link:hover, .modern-nav-link.show {
        background-color: rgba(13, 110, 253, 0.08); /* Primary rengin çok açık hali */
        color: #0d6efd !important;
    }

    .modern-nav-link i {
        transition: transform 0.2s;
    }

    .modern-nav-link:hover i {
        transform: translateY(-2px);
    }

/* Mega Menu / Dropdown Konteyner */
.modern-mega-menu {
    min-width: 400px;
    margin-top: 10px !important;
}

@media (max-width: 991px) {
    .modern-mega-menu {
        min-width: 100%;
        border-radius: 15px;
    }

    .pl-4 {
        padding-left: 0 !important;
    }

    .col-md-5.text-center {
        margin-top: 15px;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }
}

/* Mega Link (Metin Tabanlı Listeleme) */
.modern-mega-link {
    display: flex;
    align-items: center;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: background 0.2s;
}

    .modern-mega-link:hover {
        background-color: #f8f9fa;
        color: #0d6efd !important;
    }

/* Mega İtem Kartı (İkonlu/Resimli Kart) */
.modern-mega-item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s;
}

    .modern-mega-item-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
        background-color: rgba(13, 110, 253, 0.05);
        border-color: #0d6efd;
        color: #0d6efd !important;
    }

/* Sağ Taraf Aksiyon Butonları */
.modern-action-btn {
    font-size: 0.85rem !important;
    padding: 0.6rem 1.2rem !important;
    white-space: nowrap;
}

.btn-warning.modern-action-btn {
    color: #000 !important;
}

.btn-outline-secondary.modern-action-btn {
    color: #666 !important;
}