    :root {
      --bg:#0a0a0a; --card:#161616; --text:#f5f5f5; --muted:#888;
      --accent:#ff5a1f; --ok:#22c55e; --err:#ef4444; --warn:#f59e0b; --info:#3b82f6;
      --border:#262626; --border-hover:#3a3a3a;
    }
    * { box-sizing: border-box; }
    body { margin:0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }
    .container { max-width: 760px; margin: 0 auto; padding: 24px 16px; position: relative; z-index: 2; }
    /* Faza 14.20: am scos border-bottom de pe header generic - linia despartitoare sub logo */
    /* header { display:flex; align-items:center; gap:12px; padding: 16px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; } */
    header img { width: 40px; height: 40px; }
    header h1 { font-size: 20px; margin: 0; }
    .card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
    label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
    input, select, textarea {
      width: 100%; padding: 10px 12px; background: #0a0a0a; color: var(--text);
      border: 1px solid var(--border); border-radius: 8px; font-size: 14px;
      font-family: inherit;
    }
    input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
    textarea { min-height: 80px; resize: vertical; }
    button { background: var(--accent); color: #fff; border: 0; padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
    button:hover:not(:disabled) { opacity: .9; }
    button.secondary { background: var(--card); border: 1px solid var(--border); color: var(--text); }
    button.success { background: #22c55e; color: #fff; }
    button.danger { background: #ef4444; color: #fff; }
    button.warn { background: #f59e0b; color: #000; }
    /* Faza 7: culori specifice per actiune */
    button.btn-confirm { background: #22c55e; color: #fff; }
    button.btn-save-changes { background: #3b82f6; color: #fff; }  /* albastru - save notes+deadline */
    button.btn-text-change { background: #ec4899; color: #fff; }  /* roz - text change */
    button.btn-media-change { background: #f97316; color: #fff; }  /* portocaliu - media change */
    button:disabled { opacity: .5; cursor: not-allowed; }
    .btn-row { display:flex; gap: 8px; flex-wrap: wrap; }
    .metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
    .metric { background: #0a0a0a; border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
    .metric .v { font-size: 24px; font-weight: 700; }
    .metric .l { font-size: 12px; color: var(--muted); margin-top: 4px; }
    .muted { color: var(--muted); font-size: 13px; }
    .err { color: var(--err); font-size: 13px; margin-top: 8px; }
    .ok { color: var(--ok); font-size: 13px; margin-top: 8px; }
    .status-pill { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; }
    .hidden { display: none !important; }

    /* Status badges (Faza 4) */
    .badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .3px; }
    .badge-green { background: rgba(34,197,94,.18); color: var(--ok); }
    .badge-blue { background: rgba(59,130,246,.18); color: var(--info); }
    .badge-yellow { background: rgba(245,158,11,.18); color: var(--warn); }
    .badge-red { background: rgba(239,68,68,.18); color: var(--err); }
    .badge-gray { background: rgba(136,136,136,.18); color: var(--muted); }

    /* Tabs (Faza 4) */
    .tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 16px; overflow-x: auto; }
    .tab { padding: 10px 16px; background: transparent; color: var(--muted); border: 0; border-bottom: 2px solid transparent; border-radius: 0; cursor: pointer; font-size: 14px; font-weight: 500; white-space: nowrap; }
    .tab:hover { color: var(--text); opacity: 1; }
    .tab.active { color: var(--accent); border-bottom-color: var(--accent); }
    .tab-pane { display: none; }
    .tab-pane.active { display: block; }

    /* List cards (Faza 4) */
    .list-item {
      background: #0a0a0a; border: 1px solid var(--border); border-radius: 10px;
      padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: all .15s ease;
    }
    .list-item:hover { border-color: var(--border-hover); transform: translateY(-1px); }
    .list-item .item-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
    .list-item .item-meta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; font-size: 12px; color: var(--muted); }
    .list-item .item-meta .sep { color: var(--border); }

    /* Filters bar */
    .filter-bar { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; align-items: center; }
    .filter-bar select, .filter-bar input { width: auto; flex: 1; min-width: 140px; max-width: 240px; }
    .filter-bar input[type="text"] { max-width: 240px; }

    /* Modal */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,.7);
      display: flex; align-items: center; justify-content: center; z-index: 100;
      padding: 16px;
    }
    .modal {
      background: var(--card); border: 1px solid var(--border); border-radius: 12px;
      max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 24px;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
    .modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; gap: 12px; }
    .modal-title { font-size: 18px; font-weight: 700; margin: 0; }
    .modal-close { background: transparent; color: var(--muted); font-size: 24px; padding: 0 8px; line-height: 1; }
    .modal-section { margin-bottom: 16px; }
    .modal-section h4 { font-size: 13px; color: var(--muted); margin: 0 0 8px 0; text-transform: uppercase; letter-spacing: .5px; }
    .prop-grid { display: grid; grid-template-columns: 140px 1fr; gap: 8px 16px; font-size: 13px; }
    .prop-grid .k { color: var(--muted); }
    .prop-grid .v { color: var(--text); word-break: break-word; }
    .prop-text { background: #0a0a0a; border: 1px solid var(--border); border-radius: 8px; padding: 12px; white-space: pre-wrap; font-size: 13px; max-height: 240px; overflow-y: auto; }
