/* ============================================
   SOCIAL PLATFORM CSS - Kamil Projesi
   ============================================ */

/* Online status indicator */
.online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    flex-shrink: 0;
}
.online-dot.online  { background: #22c55e; }
.online-dot.away    { background: #f59e0b; }
.online-dot.offline { background: #94a3b8; }

.online-status-text {
    font-size: 0.78rem;
    font-weight: 600;
}
.online-status-text.online  { color: #16a34a; }
.online-status-text.away    { color: #d97706; }
.online-status-text.offline { color: #94a3b8; }

/* ============ SOCIAL PAGE WRAPPER ============ */
.social-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 768px) {
    .social-wrap { grid-template-columns: 1fr; }
}

/* ============ PROFILE CARD ============ */
.profile-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.profile-card-banner {
    height: 80px;
    background: linear-gradient(135deg, var(--primary, #4F46E5), #7c3aed);
}
.profile-card-body {
    padding: 0 1.25rem 1.25rem;
}
.profile-avatar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -30px;
    margin-bottom: 0.75rem;
}
.profile-avatar-big {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
    position: relative;
}
.profile-avatar-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
}
.profile-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.1rem 0;
}
.profile-role-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.role-admin-badge  { background: #fef2f2; color: #dc2626; }
.role-editor-badge { background: #eff6ff; color: #2563eb; }
.role-mod-badge    { background: #f0fdf4; color: #16a34a; }
.role-uye-badge    { background: #f8fafc; color: #64748b; }

.profile-bio {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0.5rem 0;
}
.profile-meta-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.profile-meta-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.83rem;
    color: #64748b;
}
.profile-meta-list li i {
    width: 14px;
    color: #94a3b8;
    text-align: center;
}
.profile-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1rem 0 0.75rem;
}
.profile-stat-box {
    text-align: center;
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.6rem 0.3rem;
}
.profile-stat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}
.profile-stat-lbl {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Action buttons */
.profile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.18s;
    width: 100%;
    margin-top: 0.5rem;
}
.btn-arkadas-ekle    { background: #4F46E5; color: white; }
.btn-arkadas-ekle:hover { background: #4338CA; }
.btn-bekliyor        { background: #f1f5f9; color: #64748b; border: 1px solid #e2e8f0; }
.btn-arkadaslar-var  { background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0; }
.btn-arkadaslar-var:hover { background: #fee2e2; color: #ef4444; border-color: #fecaca; }
.btn-mesaj-gonder    { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.btn-mesaj-gonder:hover { background: #dcfce7; }
.btn-engelli         { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }

/* ============ CONTENT PANEL ============ */
.social-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-section {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.social-section-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social-section-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.social-section-header h3 i {
    color: var(--primary, #4F46E5);
}

/* ============ FRIEND LIST ============ */
.friend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    padding: 1rem;
}
.friend-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.friend-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.friend-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 0.6rem;
    position: relative;
}
.friend-card-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.friend-card-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.6rem;
}
.friend-card-actions {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
}
.friend-card-btn {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    text-decoration: none;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 3px;
}
.friend-card-btn:hover { background: #f1f5f9; }
.friend-card-btn.danger:hover { background: #fee2e2; color: #ef4444; border-color: #fecaca; }

/* Request cards */
.request-list { padding: 0; }
.request-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.request-item:last-child { border-bottom: none; }
.request-item:hover { background: #f8fafc; }
.request-item-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}
.request-item-info { flex: 1; min-width: 0; }
.request-item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
}
.request-item-date {
    font-size: 0.78rem;
    color: #94a3b8;
}
.request-item-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}
.btn-sm-accept {
    padding: 5px 12px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-sm-accept:hover { background: #4338CA; }
.btn-sm-reject {
    padding: 5px 10px;
    background: white;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-sm-reject:hover { background: #fee2e2; color: #ef4444; border-color: #fecaca; }

/* ============ MESSAGING ============ */
.msg-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    height: calc(100vh - 160px);
    min-height: 500px;
}
@media (max-width: 768px) {
    .msg-wrap { grid-template-columns: 1fr; height: auto; }
}
.msg-sidebar {
    background: white;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.msg-sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
    background: #f8fafc;
}
.msg-conv-list {
    flex: 1;
    overflow-y: auto;
}
.msg-conv-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s;
    text-decoration: none;
}
.msg-conv-item:hover, .msg-conv-item.active {
    background: #f1f5f9;
}
.msg-conv-item.active { background: #eff3ff; }
.msg-conv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    position: relative;
}
.msg-conv-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid white;
}
.msg-conv-info { flex: 1; min-width: 0; }
.msg-conv-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.msg-conv-preview {
    font-size: 0.78rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.msg-conv-meta {
    font-size: 0.72rem;
    color: #94a3b8;
    flex-shrink: 0;
    text-align: right;
}
.msg-conv-unread {
    background: #4F46E5;
    color: white;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    margin-top: 2px;
    display: inline-block;
}

/* Chat area */
.msg-chat-area {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0 14px 14px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.msg-chat-header {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
}
.msg-chat-header-info { flex: 1; }
.msg-chat-header-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}
.msg-chat-header-status {
    font-size: 0.78rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.msg-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: #f8fafc;
}
.msg-bubble-wrap {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}
.msg-bubble-wrap.mine {
    flex-direction: row-reverse;
}
.msg-bubble {
    max-width: 70%;
    padding: 0.6rem 0.9rem;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-word;
}
.msg-bubble.theirs {
    background: white;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
}
.msg-bubble.mine {
    background: #4F46E5;
    color: white;
    border-bottom-right-radius: 4px;
}
.msg-bubble-time {
    font-size: 0.68rem;
    color: #94a3b8;
    flex-shrink: 0;
    padding-bottom: 4px;
}
.msg-input-area {
    padding: 0.75rem 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 0.6rem;
    align-items: flex-end;
    background: white;
}
.msg-input-area textarea {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    font-size: 0.88rem;
    resize: none;
    max-height: 120px;
    min-height: 40px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.msg-input-area textarea:focus { border-color: #4F46E5; }
.msg-send-btn {
    padding: 0.6rem 1rem;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}
.msg-send-btn:hover { background: #4338CA; }
.msg-empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    gap: 0.75rem;
    background: #f8fafc;
}
.msg-empty-state i { font-size: 2.5rem; opacity: 0.4; }

/* ============ NOTIFICATIONS ============ */
.notif-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}
.notif-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.notif-header-bar h1 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.notif-list {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.notif-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
    text-decoration: none;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: #f8fafc; }
.notif-item.unread { background: #fefce8; }
.notif-item.unread:hover { background: #fef9c3; }
.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.notif-icon.arkadas_istegi  { background: #eff6ff; color: #3b82f6; }
.notif-icon.arkadas_onay    { background: #f0fdf4; color: #22c55e; }
.notif-icon.mesaj           { background: #faf5ff; color: #a855f7; }
.notif-icon.yorum_cevap     { background: #fff7ed; color: #f97316; }
.notif-icon.forum_cevap     { background: #f0fdf4; color: #16a34a; }
.notif-icon.sistem          { background: #f8fafc; color: #64748b; }
.notif-info { flex: 1; min-width: 0; }
.notif-baslik {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
}
.notif-mesaj {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notif-tarih {
    font-size: 0.75rem;
    color: #94a3b8;
    flex-shrink: 0;
}
.notif-unread-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4F46E5;
    flex-shrink: 0;
}
.btn-okundu-tum {
    padding: 6px 14px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-okundu-tum:hover { background: #e2e8f0; }

/* ============ FORUM MODERATOR TOOLS ============ */
.mod-bar {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.mod-bar-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.25rem;
}
.btn-mod {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-mod-pin    { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.btn-mod-pin:hover  { background: #dbeafe; }
.btn-mod-lock   { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.btn-mod-lock:hover { background: #ffedd5; }
.btn-mod-delete { background: #fee2e2; color: #dc2626; border-color: #fecaca; }
.btn-mod-delete:hover { background: #fecaca; }
.btn-mod-move   { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.btn-mod-move:hover  { background: #ede9fe; }

.rapor-btn {
    font-size: 0.75rem;
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    border-radius: 5px;
    transition: all 0.15s;
    text-decoration: none;
}
.rapor-btn:hover { color: #ef4444; background: #fee2e2; }

/* ---- ALINTILA BUTONU ---- */
.quote-btn {
    font-size: 0.75rem;
    color: #4F46E5;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 6px;
    transition: all 0.18s ease;
    font-weight: 600;
}
.quote-btn:hover {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(79, 70, 229, 0.25);
}
.quote-btn i { font-size: 0.7rem; }

/* ---- ALINTI ÖNİZLEME BANDI ---- */
.quote-preview-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #eef2ff, #f0f9ff);
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 10px;
    gap: 10px;
    animation: slideDown 0.2s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.quote-preview-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.quote-preview-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #4F46E5;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.quote-preview-label i { font-size: 0.65rem; }
.quote-preview-text {
    font-size: 0.75rem;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: italic;
}
.quote-remove-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.15s;
    flex-shrink: 0;
}
.quote-remove-btn:hover { color: #ef4444; background: #fee2e2; }

/* ---- BLOCKQUOTE (Alıntı render) ---- */
.post-body blockquote,
.preview-pane blockquote {
    border-left: 3px solid #4F46E5;
    background: linear-gradient(135deg, #f8faff, #f0f4ff);
    margin: 8px 0;
    padding: 8px 14px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
    font-size: 0.87em;
    position: relative;
}
.post-body blockquote::before,
.preview-pane blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #c7d2fe;
    font-size: 1.1rem;
    position: absolute;
    top: 6px;
    right: 12px;
    font-style: normal;
}
.post-body blockquote strong,
.preview-pane blockquote strong {
    color: #4F46E5;
    font-style: normal;
}


/* Modal overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.modal-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.2s;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-box h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
}
.modal-select, .modal-textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    margin-bottom: 0.75rem;
    box-sizing: border-box;
}
.modal-select:focus, .modal-textarea:focus {
    outline: none;
    border-color: #4F46E5;
}
.modal-textarea { resize: vertical; min-height: 80px; }
.modal-actions { display: flex; gap: 0.5rem; justify-content: flex-end; margin-top: 0.25rem; }
.modal-btn-cancel {
    padding: 8px 16px;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}
.modal-btn-submit {
    padding: 8px 16px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}
.modal-btn-submit:hover { background: #4338CA; }

/* Trash page */
.trash-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.trash-tab-btn {
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    transition: all 0.15s;
    text-decoration: none;
}
.trash-tab-btn:hover, .trash-tab-btn.active {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}
.trash-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trash-table th {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}
.trash-table td {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.trash-table tr:last-child td { border-bottom: none; }
.trash-table tr:hover td { background: #f8fafc; }
.btn-restore {
    padding: 4px 10px;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-restore:hover { background: #dcfce7; }
.btn-delete-perm {
    padding: 4px 10px;
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-delete-perm:hover { background: #fecaca; }
