/* minha-area.css — área pessoal do admin */
.ma-wrap{ display:grid; grid-template-columns:1.3fr 1fr; gap:16px; padding:16px 24px; align-items:start; }
@media (max-width:900px){ .ma-wrap{ grid-template-columns:1fr; } }
.ma-col{ display:flex; flex-direction:column; gap:16px; }
.ma-card{ background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:16px; }
.ma-card h3{ margin:0 0 4px; font-size:15px; font-weight:800; color:var(--text); }
.ma-card-hdr{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.ma-hint{ font-size:12px; color:var(--text-muted); margin:0 0 10px; }
.ma-textarea{ width:100%; min-height:70px; padding:9px 12px; border:1px solid var(--border-strong); border-radius:var(--radius-sm); background:var(--bg-muted); color:var(--text); font-size:13.5px; font-family:var(--font-sans); box-sizing:border-box; resize:vertical; }
.ma-textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-focus); }
.ma-lista{ display:flex; flex-direction:column; gap:8px; max-height:420px; overflow-y:auto; }
.ma-item{ border:1px solid var(--border); border-radius:var(--radius-sm); padding:10px 12px; background:var(--bg-muted); }
.ma-item-top{ display:flex; align-items:center; gap:8px; margin-bottom:4px; }
.ma-item-tipo{ font-size:10px; font-weight:700; text-transform:uppercase; padding:2px 7px; border-radius:8px; }
.ma-item-tipo.link{ background:var(--accent-soft); color:var(--accent-on-soft); }
.ma-item-tipo.nota{ background:var(--warning-soft); color:var(--warning); }
.ma-item-titulo{ font-size:13.5px; font-weight:700; color:var(--text); flex:1; }
.ma-item-acts{ display:flex; gap:6px; }
.ma-mini-btn{ border:1px solid var(--border-strong); background:var(--bg-surface); color:var(--text-muted); font-size:11px; font-weight:600; padding:3px 8px; border-radius:6px; cursor:pointer; }
.ma-mini-btn:hover{ background:var(--bg-muted); }
.ma-mini-btn.danger{ color:var(--danger); }
.ma-item-texto{ font-size:13px; color:var(--text-muted); white-space:pre-wrap; }
.ma-vis-data{ font-size:11.5px; color:var(--text-muted); margin-left:auto; }
