/* 29 — Ajustes finais: drawer do menu, espaçamento do check de leitura e
   botões de solicitação de fã na página de notificações. */

/* -------- Read-receipt (duplo check) longe do texto -------- */
.wz-msg .wz-msg-status {
    margin-left: 10px !important;
    padding-left: 4px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.wz-msg .wz-msg-body {
    padding-right: 4px;
}
.wz-msg .wz-msg-body p {
    margin-right: 6px;
    display: inline;
}
.wz-msg-status-sent   { color: rgba(255,255,255,.55); }
.wz-msg-status-delivered { color: rgba(255,255,255,.85); }
.wz-msg-status-read   { color: #22d3ee; }
.wz-msg.theirs .wz-msg-status { display: none; }

/* -------- Topbar (nova identidade enxuta) -------- */
.topbar-newpost svg { transform: translateY(0); }
.wz-menu-btn { position: relative; }

/* -------- Drawer -------- */
.wz-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(2, 4, 15, .55);
    backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    transition: opacity .22s ease;
}
.wz-drawer-overlay.open { opacity: 1; }
.wz-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 86vw);
    height: 100vh; height: 100dvh;
    background: linear-gradient(180deg, #0e1430 0%, #060916 100%);
    border-left: 1px solid rgba(124,58,237,.25);
    box-shadow: -10px 0 40px rgba(0,0,0,.45);
    z-index: 999;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.2,.9,.3,1);
    display: flex; flex-direction: column;
    color: #e6ecff;
}
.wz-drawer.open { transform: translateX(0); }
.wz-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-weight: 700; font-size: 15px;
    letter-spacing: .3px; text-transform: uppercase;
}
.wz-drawer-close {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #e6ecff;
    width: 34px; height: 34px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.wz-drawer-close:hover { background: rgba(255,255,255,.12); }
.wz-drawer-nav {
    display: flex; flex-direction: column;
    padding: 10px 8px;
    gap: 2px;
    overflow-y: auto;
}
.wz-drawer-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px;
    color: #e6ecff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    transition: background .15s, transform .05s;
}
.wz-drawer-item svg { opacity: .85; flex-shrink: 0; }
.wz-drawer-item:hover {
    background: rgba(124,58,237,.15);
}
.wz-drawer-item:active { transform: scale(.98); }
.wz-drawer-logout { color: #fca5a5; margin-top: 6px; border-top: 1px solid rgba(255,255,255,.05); border-radius: 0 0 12px 12px; }
.wz-drawer-logout:hover { background: rgba(239,68,68,.15); }

/* -------- Fan request accept/reject na notificação -------- */
.notification-request { cursor: default; }
.fan-request-actions {
    display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; align-items: center;
}
.fr-btn {
    border: 0; cursor: pointer;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12.5px; font-weight: 600;
    transition: transform .1s, filter .12s, opacity .12s;
    font-family: inherit;
}
.fr-btn:disabled { opacity: .55; cursor: default; }
.fr-btn:active:not(:disabled) { transform: scale(.96); }
.fr-accept {
    background: linear-gradient(135deg,#22c55e,#059669);
    color: #fff;
    box-shadow: 0 4px 12px rgba(34,197,94,.35);
}
.fr-accept:hover:not(:disabled) { filter: brightness(1.08); }
.fr-reject {
    background: rgba(239,68,68,.14);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,.35);
}
.fr-reject:hover:not(:disabled) { background: rgba(239,68,68,.22); }
.fr-msg {
    font-size: 12.5px; font-weight: 600;
    color: #86efac;
}
