/* ============================================================
   CizgiMax — Auth (login/register) sayfalarinin stili
   ============================================================ */

/* ----- KART ----- */
.auth-card {
    background: #ffffff;
    border-radius: 0;
    box-shadow:
        0 1px 3px rgba(15, 35, 80, 0.08),
        0 14px 40px -10px rgba(15, 35, 80, 0.18);
    padding: 36px 32px 28px;
    border: 1px solid #e2e8f5;
    max-width: 440px;
    width: 100%;
    margin: 30px auto;
}
.auth-card-wide { max-width: 520px; }

/* ----- BASLIK BOLUMU ----- */
.auth-card-head {
    text-align: center;
    margin-bottom: 24px;
}
.auth-card-icon { display: none; }    /* eski daire ikon — gizli */
.auth-card-head h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1c5fa6;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.auth-card-head p {
    font-size: 12px;
    color: #6b7c98;
    line-height: 1.55;
}

/* ----- FLASH MESAJLAR ----- */
.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 0;
    font-size: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}
.auth-alert i { margin-top: 2px; font-size: 14px; flex-shrink: 0; }
.auth-alert ul { margin: 4px 0 0 16px; padding: 0; list-style: disc; }
.auth-alert-error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}
.auth-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #bbf7d0;
}

/* ----- FORM ----- */
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label {
    font-size: 12px;
    font-weight: 600;
    color: #29395a;
    letter-spacing: 0.2px;
}
.auth-hint {
    font-size: 10.5px;
    color: #7a8aa8;
    line-height: 1.45;
}
.auth-input {
    position: relative;
    display: flex;
    align-items: stretch;
    background: #f4f7fc;
    border: 1px solid #d6dfee;
    border-radius: 0;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.auth-input:focus-within {
    background: #fff;
    border-color: #3a86d4;
    box-shadow: 0 0 0 3px rgba(58,134,212,0.15);
}
.auth-input .input-icon {
    color: #4a5a78;
    font-size: 15px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 1px solid #d6dfee;
}
.auth-input input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    padding: 12px 14px;
    font-size: 13px;
    font-family: inherit;
    color: #0d2c54;
    min-width: 0;
}
.auth-input input::placeholder { color: #9aa6bd; }
.pw-toggle {
    background: none;
    border: 0;
    border-left: 1px solid #d6dfee;
    padding: 0 14px;
    cursor: pointer;
    color: #4a5a78;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pw-toggle:hover { color: #0d47a1; }

/* Iki sutunlu satir (sifre + tekrar) */
.auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.auth-grid-2 > *,
.auth-grid-2 .auth-input { min-width: 0; }   /* grid hucresi icerige sigsin */
@media (max-width: 480px) { .auth-grid-2 { grid-template-columns: 1fr; } }

/* Beni hatirla / linkler satiri */
.auth-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
}
.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    color: #29395a;
}
.auth-check input[type=checkbox] {
    width: 15px; height: 15px;
    accent-color: #0d47a1;
    cursor: pointer;
}
.auth-check-block { display: flex; align-items: flex-start; line-height: 1.45; }

.auth-link { color: #0d47a1; }
.auth-link:hover { text-decoration: underline; }
.auth-link-muted { color: #5a6a85; }
.auth-link-muted:hover { color: #0d47a1; }

/* Captcha */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.captcha-img {
    width: 180px;
    height: 60px;
    border-radius: 0;
    border: 1px solid #d6dfee;
    background: #eef2f8;
    flex-shrink: 0;
}
.captcha-refresh {
    background: #f4f7fc;
    border: 1px solid #d6dfee;
    color: #0d47a1;
    width: 38px;
    height: 38px;
    border-radius: 0;
    cursor: pointer;
    font-size: 13px;
    transition: background .15s, border-color .15s;
    flex-shrink: 0;
}
.captcha-refresh:hover { background: #e6eefc; border-color: #3a86d4; }
.captcha-row input {
    flex: 1;
    min-width: 0;
    border: 1px solid #d6dfee;
    background: #f4f7fc;
    border-radius: 0;
    padding: 11px 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    color: #0d2c54;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.captcha-row input:focus {
    background: #fff;
    border-color: #3a86d4;
    box-shadow: 0 0 0 3px rgba(58,134,212,0.15);
    outline: none;
}
@media (max-width: 480px) {
    .captcha-row { gap: 8px; }
    .captcha-row input {
        flex: 0 0 100%;
        width: 100%;
        padding: 13px 12px;
        font-size: 15px;
    }
}

/* Submit */
.auth-submit {
    margin-top: 6px;
    background: #165fa7;            /* header menusu ile ayni mavi */
    color: #fff;
    border: 0;
    border-radius: 0;
    padding: 13px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: transform .1s, background .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}
.auth-submit:hover  { background: #0e3d8e; }
.auth-submit:active { transform: translateY(1px); }

/* Acik mavi varyant (kayit ol butonu — login sayfasi) */
.auth-submit-alt {
    background: #3a86d4;
    width: 100%;
    text-decoration: none;
}
.auth-submit-alt:hover { background: #2a72bd; color: #fff; text-decoration: none; }

/* Mini divider — "VEYA HESABIN YOKSA" */
.auth-mini-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 10px;
    color: #9aa6bd;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.auth-mini-divider::before,
.auth-mini-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e7ecf6;
}

/* Alt link */
.auth-card-foot {
    text-align: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e7ecf6;
    font-size: 12px;
    color: #5a6a85;
}
.auth-card-foot a { color: #0d47a1; }
.auth-card-foot a:hover { text-decoration: underline; }

/* ============================================================
   SOCIAL LOGIN
   ============================================================ */

/* "VEYA" ayraç */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 16px;
    color: #9aa6bd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e7ecf6;
}

/* buton satiri */
.auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 4px;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    color: #fff;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: filter .15s, transform .1s;
    letter-spacing: 0.3px;
}
.auth-social-btn:hover  { filter: brightness(1.12); color: #fff; text-decoration: none; }
.auth-social-btn:active { transform: translateY(1px); }
.auth-social-btn i      { font-size: 15px; flex-shrink: 0; }
.auth-social-btn svg    { flex-shrink: 0; }

.auth-social-google  { background: #4285F4; }
.auth-social-twitch  { background: #9146FF; }
.auth-social-discord { background: #5865F2; }
.auth-social-steam   { background: #171a21; }

@media (max-width: 400px) {
    .auth-social { grid-template-columns: 1fr; }
}

/* ============================================================
   KAYIT SAYFASI — Form + Avantajlar (yan yana)
   ============================================================ */
.auth-with-benefits {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 30px auto;
}
.auth-with-benefits .auth-card { margin: 0; }

.auth-benefits {
    background: #fff;
    border: 1px solid #e2e8f5;
    box-shadow:
        0 1px 3px rgba(15, 35, 80, 0.08),
        0 14px 40px -10px rgba(15, 35, 80, 0.18);
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
}
.auth-benefits-head {
    padding: 14px 22px;
    border-bottom: 1px solid #e7ecf6;
    color: #1c5fa6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.auth-benefits-stage {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.auth-benefits-stage::-webkit-scrollbar { display: none; }
.auth-benefits-slide {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 22px 24px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.auth-benefits-illust {
    width: 100%;
    height: 200px;
    background: #eef2f8;
    border: 1px solid #e2e8f5;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-benefits-illust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}
.auth-benefits-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #0d2c54;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.auth-benefits-desc {
    font-size: 12px;
    color: #5a6a85;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
}
.auth-benefits-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 0 22px;
}
.auth-benefits-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d4dceb;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .15s, transform .15s;
}
.auth-benefits-dot:hover { background: #aab8d0; }
.auth-benefits-dot.is-active { background: #1c5fa6; transform: scale(1.15); }

@media (max-width: 1000px) {
    .auth-with-benefits { flex-direction: column; align-items: center; gap: 18px; }
    .auth-benefits { max-width: 520px; }
}

/* ============================================================
   HEADER USER MENU (her sayfada — login sonrasi)
   ============================================================ */
/* User tools wrap — bildirim + user-menu ikisini sağa taşır */
.user-tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Bildirim wrapper + butonu */
.notif-wrap { position: relative; flex-shrink: 0; }
.notif-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    padding: 0;
    color: #165fa7;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color .15s, transform .15s;
}
.notif-btn:hover { color: #0d4787; transform: scale(1.1); }
body.dark-mode .notif-btn { color: #5fa8f8; }
body.dark-mode .notif-btn:hover { color: #8fb9ee; }

.notif-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: #e63946;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
}
.notif-badge.is-zero { display: none; }
body.dark-mode .notif-badge { box-shadow: 0 0 0 2px #1c2434; }

/* Dropdown */
.notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border: 1px solid #e2e8f5;
    border-radius: 10px;
    box-shadow: 0 12px 32px -8px rgba(15,35,80,0.22);
    display: none;
    z-index: 1000;
    overflow: hidden;
}
.notif-wrap.is-open .notif-dropdown { display: block; }

.notif-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #eaf1fb;
    border-bottom: 1px solid #d6e1f1;
    font-size: 12px;
}
.notif-head-title { font-weight: 700; color: #29395a; letter-spacing: .3px; }
.notif-head-link {
    color: #1f6feb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.notif-head-link:hover { text-decoration: underline; }

.notif-list {
    max-height: 380px;
    overflow-y: auto;
}
.notif-empty {
    padding: 28px 14px;
    text-align: center;
    color: #6b7c98;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.notif-empty i { font-size: 22px; opacity: .6; }

.notif-item {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid #eef2f8;
    color: inherit;
    text-decoration: none;
    transition: background .12s;
}
.notif-item:last-child { border-bottom: 0; }
.notif-item:hover { background: #f6f9fd; }
.notif-item.is-unread { background: #f4f8fe; }
.notif-item.is-unread:hover { background: #eaf1fb; }

.notif-item-title {
    color: #2c8c5b;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 4px;
}
.notif-item.is-unread .notif-item-title { color: #2c8c5b; }
.notif-item:not(.is-unread) .notif-item-title { color: #6b7c98; }

.notif-title-name   { color: #2c8c5b; }
.notif-title-suffix { color: #1f6feb; }
.notif-item:not(.is-unread) .notif-title-name,
.notif-item:not(.is-unread) .notif-title-suffix,
.notif-page-item:not(.is-unread) .notif-title-name,
.notif-page-item:not(.is-unread) .notif-title-suffix { color: #6b7c98; }

/* Görsel (poster) içeren bildirim */
.notif-item.has-image { display: flex; gap: 10px; align-items: stretch; }
.notif-item.has-image .notif-item-main { flex: 1; min-width: 0; }
.notif-item-thumb {
    width: 44px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eaf1fb;
}
.notif-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.notif-item-body {
    color: #29395a;
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 8px;
    word-break: break-word;
}

.notif-item-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
}
.notif-mark-read {
    background: transparent;
    border: 0;
    padding: 0;
    color: #1f6feb;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    text-decoration: underline;
}
.notif-mark-read:hover { color: #0d47a1; }
.notif-item-date { color: #1f6feb; font-weight: 600; }

.notif-foot {
    display: flex;
    align-items: stretch;
    background: #f4f7fc;
    border-top: 1px solid #e2e8f5;
    font-size: 12px;
}
.notif-foot-btn,
.notif-foot-link {
    flex: 1;
    padding: 10px 12px;
    background: transparent;
    border: 0;
    color: #1f6feb;
    font-weight: 600;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .12s, color .12s;
}
.notif-foot-btn:hover:not(:disabled),
.notif-foot-link:hover { background: #eaf1fb; color: #0d47a1; }
.notif-foot-btn:disabled { color: #9aa6bd; cursor: not-allowed; }
.notif-foot-link { border-left: 1px solid #e2e8f5; }

/* Dark mode */
body.dark-mode .notif-dropdown {
    background: #1c2434;
    border-color: #2a3550;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.55);
}
body.dark-mode .notif-head { background: #243047; border-bottom-color: #2a3550; }
body.dark-mode .notif-head-title { color: #d7dde6; }
body.dark-mode .notif-head-link { color: #5fa8f8; }
body.dark-mode .notif-empty { color: #8a93a3; }
body.dark-mode .notif-item { border-bottom-color: #2a3550; }
body.dark-mode .notif-item:hover { background: #243047; }
body.dark-mode .notif-item.is-unread { background: #20293c; }
body.dark-mode .notif-item.is-unread:hover { background: #283454; }
body.dark-mode .notif-item-body { color: #d7dde6; }
body.dark-mode .notif-mark-read,
body.dark-mode .notif-item-date,
body.dark-mode .notif-foot-btn,
body.dark-mode .notif-foot-link { color: #5fa8f8; }
body.dark-mode .notif-foot { background: #243047; border-top-color: #2a3550; }
body.dark-mode .notif-foot-link { border-left-color: #2a3550; }
body.dark-mode .notif-foot-btn:hover:not(:disabled),
body.dark-mode .notif-foot-link:hover { background: #2a3550; color: #8fb9ee; }
body.dark-mode .notif-foot-btn:disabled { color: #5a6478; }

@media (max-width: 640px) {
    .notif-dropdown {
        position: fixed;
        top: 60px;
        right: 8px;
        left: auto;
        width: min(340px, calc(100vw - 16px));
        max-height: 75vh;
        overflow-y: auto;
    }
}

.user-menu {
    position: relative;
    flex-shrink: 0;
}
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 35px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    color: #29395a;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
}
.user-menu-btn:hover { background: transparent; color: #165fa7; }
.user-menu-avatar {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    object-fit: cover;
    background: transparent;
}
.user-menu-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
}
.user-menu-btn .fa-caret-down { font-size: 11px; color: #6b7c98; }
.user-menu-btn:hover .fa-caret-down { color: #165fa7; }
body.dark-mode .user-menu-btn { color: #d7dde6; }
body.dark-mode .user-menu-btn:hover { color: #5fa8f8; }
body.dark-mode .user-menu-btn .fa-caret-down { color: #8a93a3; }

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e2e8f5;
    border-radius: 10px;
    box-shadow: 0 12px 32px -8px rgba(15,35,80,0.22);
    padding: 6px;
    display: none;
    z-index: 1000;
}
.user-menu.is-open .user-menu-dropdown { display: block; }
.user-menu-dropdown a,
.user-menu-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    color: #29395a;
    background: none;
    border: 0;
    border-radius: 6px;
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}
.user-menu-dropdown a:hover,
.user-menu-dropdown button:hover { background: #f4f7fc; color: #0d47a1; }
.user-menu-dropdown i { width: 14px; text-align: center; color: #6b7c98; }
.user-menu-dropdown a:hover i,
.user-menu-dropdown button:hover i { color: #0d47a1; }
.user-menu-dropdown .user-menu-head {
    padding: 10px 12px 8px;
    border-bottom: 1px solid #eef2f8;
    margin-bottom: 4px;
}
.user-menu-dropdown .user-menu-head .nm { font-weight: 700; color: #0d2c54; font-size: 13px; }
.user-menu-dropdown .user-menu-head .em { color: #6b7c98; font-size: 11px; margin-top: 2px; word-break: break-all; }

.user-menu-divider { height: 1px; background: #eef2f8; margin: 4px 0; }
.user-menu-logout-form { margin: 0; }

.user-menu-dropdown a.user-menu-admin {
    color: #b54708;
    font-weight: 600;
}
.user-menu-dropdown a.user-menu-admin i { color: #d97706; }
.user-menu-dropdown a.user-menu-admin:hover { background: #fff7ed; color: #9a3412; }
.user-menu-dropdown a.user-menu-admin:hover i { color: #9a3412; }

@media (max-width: 720px) {
    .user-menu .user-menu-name { display: none; }
    .user-menu-btn { padding: 4px; }
}

/* Mobilde .user-tools (bell + user-menu) gorunur kalir ki dropdown'lar calissin;
   sadece kompakt hale getir + caret'i gizle. */
@media (max-width: 640px) {
    .user-tools { gap: 10px; }
    .user-menu-btn { padding: 0; gap: 6px; }
    .user-menu-btn .fa-caret-down { display: none; }
    .user-menu-avatar { width: 34px; height: 34px; border-radius: 50%; }
    .notif-btn { width: 38px; height: 38px; font-size: 23px; }
    .notif-badge { top: 0; right: 0; }
}
@media (max-width: 380px) {
    .notif-btn { width: 34px; height: 34px; font-size: 21px; }
    .user-menu-avatar { width: 32px; height: 32px; }
}

/* ============================================================
   /bildirimler/ tam sayfa
   ============================================================ */
.notif-page {
    background: #fff;
    border: 1px solid #e2e8f5;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px -4px rgba(15,35,80,0.06);
}
.notif-page-head {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f8;
    margin-bottom: 14px;
}
.notif-page-head h1 {
    font-size: 20px;
    color: #0d2c54;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.notif-page-head h1 i { color: #1f6feb; }
.notif-page-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #29395a; }
.notif-page-meta strong { color: #1f6feb; }
.notif-page-readall {
    background: #1f6feb;
    color: #fff;
    border: 0;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.notif-page-readall:hover { background: #0d47a1; }

.notif-page-empty {
    padding: 60px 20px;
    text-align: center;
    color: #6b7c98;
}
.notif-page-empty i { font-size: 36px; opacity: .5; margin-bottom: 12px; display: block; }
.notif-page-empty p { font-size: 13px; line-height: 1.6; margin: 0; }

.notif-page-list { display: flex; flex-direction: column; gap: 8px; }
.notif-page-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid #eef2f8;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: background .12s, border-color .12s;
}
.notif-page-item:hover { background: #f6f9fd; border-color: #d6e1f1; }
.notif-page-item.is-unread { background: #f4f8fe; border-color: #c8d8f0; }

.notif-page-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eaf1fb;
    color: #1f6feb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.notif-page-item.is-unread .notif-page-icon { background: #1f6feb; color: #fff; }

/* "Supheli birsey bulamadik" / dismiss bildirimleri kirmizi tema */
.notif-page-icon:has(> i.fa-circle-xmark) {
    background: #fde4e4;
    color: #c0392b;
}
.notif-page-item.is-unread .notif-page-icon:has(> i.fa-circle-xmark) {
    background: #c0392b;
    color: #fff;
}
body.dark-mode .notif-page-icon:has(> i.fa-circle-xmark) {
    background: rgba(192, 57, 43, .18); color: #f6c1bd;
}
body.dark-mode .notif-page-item.is-unread .notif-page-icon:has(> i.fa-circle-xmark) {
    background: #c0392b; color: #fff;
}

.notif-page-body { flex: 1; min-width: 0; }
.notif-page-title { color: #2c8c5b; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.notif-page-thumb {
    width: 48px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #eaf1fb;
}
.notif-page-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.notif-page-item:not(.is-unread) .notif-page-title { color: #6b7c98; }
.notif-page-text { color: #29395a; font-size: 13px; line-height: 1.5; margin-bottom: 8px; word-break: break-word; }
.notif-page-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
}
.notif-page-readlabel { color: #6b7c98; display: inline-flex; align-items: center; gap: 4px; }
.notif-page-readlabel i { color: #16a34a; }
.notif-page-date { color: #1f6feb; font-weight: 600; }

body.dark-mode .notif-page { background: #1c2434; border-color: #2a3550; }
body.dark-mode .notif-page-head { border-bottom-color: #2a3550; }
body.dark-mode .notif-page-head h1 { color: #d7dde6; }
body.dark-mode .notif-page-meta { color: #d7dde6; }
body.dark-mode .notif-page-meta strong { color: #5fa8f8; }
body.dark-mode .notif-page-empty { color: #8a93a3; }
body.dark-mode .notif-page-item { background: #1c2434; border-color: #2a3550; }
body.dark-mode .notif-page-item:hover { background: #243047; border-color: #36456a; }
body.dark-mode .notif-page-item.is-unread { background: #20293c; border-color: #36456a; }
body.dark-mode .notif-page-icon { background: #243047; color: #5fa8f8; }
body.dark-mode .notif-page-item.is-unread .notif-page-icon { background: #5fa8f8; color: #1c2434; }
body.dark-mode .notif-page-text { color: #d7dde6; }
body.dark-mode .notif-page-readlabel { color: #8a93a3; }
body.dark-mode .notif-page-date { color: #5fa8f8; }
body.dark-mode .notif-page-readall { background: #1f6feb; }
body.dark-mode .notif-page-readall:hover { background: #0d47a1; }

/* User dropdown menu (sağ üst profil) */
body.dark-mode .user-menu-dropdown {
    background: #23262f;
    border-color: #2a2d36;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.55);
}
body.dark-mode .user-menu-dropdown a,
body.dark-mode .user-menu-dropdown button { color: #d7dde6; }
body.dark-mode .user-menu-dropdown a:hover,
body.dark-mode .user-menu-dropdown button:hover { background: #1d2a3d; color: #6ea6e8; }
body.dark-mode .user-menu-dropdown i { color: #8a93a3; }
body.dark-mode .user-menu-dropdown a:hover i,
body.dark-mode .user-menu-dropdown button:hover i { color: #6ea6e8; }
body.dark-mode .user-menu-dropdown .user-menu-head { border-bottom-color: #2a2d36; }
body.dark-mode .user-menu-dropdown .user-menu-head .nm { color: #e0e3eb; }
body.dark-mode .user-menu-dropdown .user-menu-head .em { color: #8a93a3; }
body.dark-mode .user-menu-divider { background: #2a2d36; }
body.dark-mode .user-menu-dropdown a.user-menu-admin { color: #f5a623; }
body.dark-mode .user-menu-dropdown a.user-menu-admin i { color: #f5a623; }
body.dark-mode .user-menu-dropdown a.user-menu-admin:hover { background: #3a2715; color: #ffc66a; }
body.dark-mode .user-menu-dropdown a.user-menu-admin:hover i { color: #ffc66a; }
