/* ============================================
   Sınav Başvuru Public Sayfa Stilleri
   ============================================ */

/* Body */
.sinav-basvuru-page {
    background-color: #f5f7fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ── */
.sinav-basvuru-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}

.header-logo {
    height: 36px;
    width: auto;
}

.header-kurum-adi {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

/* ── Desktop Navigasyon (Bottom line justified) ── */
.sinav-basvuru-desktop-nav {
    border-bottom: none;
    flex: 1;
    max-width: 600px;
    margin-left: auto;
}

/* ── İçerik ── */
.sinav-basvuru-content {
    flex: 1;
    padding: 1.5rem 0;
}

/* ── Footer ── */
.sinav-basvuru-footer {
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    background: #fff;
    font-size: 0.8125rem;
}

/* ── Mobil Bottom Tab Bar ── */
.sinav-basvuru-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e9ecef;
    z-index: 100;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.06);
}

.sinav-basvuru-tab-bar .tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #adb5bd;
    font-size: 0.6875rem;
    transition: color 0.2s ease;
}

.sinav-basvuru-tab-bar .tab-item i {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
}

.sinav-basvuru-tab-bar .tab-item.active {
    color: #3D5EE1;
}

.sinav-basvuru-tab-bar .tab-item:hover {
    color: #3D5EE1;
}

/* ── Sınav Kuralları (HTML içerik) ── */
.sinav-kurallari-icerik {
    font-size: 0.85rem;
    line-height: 1.6;
}

.sinav-kurallari-icerik p {
    margin-bottom: 0.3rem;
}

.sinav-kurallari-icerik ul,
.sinav-kurallari-icerik ol {
    margin-bottom: 0.3rem;
    padding-left: 1.5rem;
}

/* ── İletişim ── */
.iletisim-ikon {
    width: 32px;
    height: 32px;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .sinav-basvuru-tab-bar {
        display: flex;
    }

    .sinav-basvuru-content {
        padding-bottom: 5rem;
    }

    .sinav-basvuru-footer {
        padding-bottom: 5rem;
    }

    .sinav-basvuru-header .container > .d-flex {
        justify-content: center !important;
    }
}
