/* Üye Bildirimler Sayfası */

body {
    background: #f6f7f9;
}

.kb-notify-shell {
    max-width: 980px;
}

.kb-notify-title {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.kb-notify-title-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 160, 133, .10);
    color: #16a085;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
}

.kb-notify-toolbar {
    border-radius: 16px;
}

.kb-notify-search .form-control,
.kb-notify-search .input-group-text {
    padding-top: .55rem;
    padding-bottom: .55rem;
}

.kb-notify-count {
    border: 1px solid #e5e7eb;
}

.kb-notify-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    overflow: hidden;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.kb-notify-card.is-unread {
    border-color: rgba(239, 68, 68, .35);
    background: radial-gradient(circle at top left, rgba(239, 68, 68, .06), transparent 55%), #ffffff;
}

.kb-notify-card.is-unread .kb-notify-headline .title {
    font-weight: 850;
}

.kb-notify-card.is-unread::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(239, 68, 68, .85);
}

.kb-notify-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .10);
    border-color: rgba(22, 160, 133, .35);
}

.kb-notify-card-header {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.kb-notify-level {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
}

.kb-notify-level-info { background: #0ea5e9; }
.kb-notify-level-warning { background: #f59e0b; }
.kb-notify-level-danger { background: #ef4444; }
.kb-notify-level-success { background: #10b981; }
.kb-notify-level-reject { background: #ef4444; }

.kb-notify-headline {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.kb-notify-headline .title {
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.kb-notify-headline .excerpt {
    color: #6b7280;
    font-size: .88rem;
    margin-top: 2px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.kb-notify-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

.kb-notify-chip {
    font-size: .78rem;
    padding: .15rem .55rem;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.kb-notify-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-end;
}

.kb-notify-body {
    color: #111827;
    font-size: .95rem;
}

.kb-notify-body .kb-notify-content {
    white-space: normal;
    word-break: break-word;
}

.kb-notify-unread-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .15);
    margin-top: 6px;
    flex: 0 0 auto;
}

@media (max-width: 767.98px) {
    .kb-notify-shell {
        padding-inline: .5rem;
    }
    .kb-notify-toolbar {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }
    .kb-notify-card {
        border-radius: 12px;
    }
}

