.status-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
  }

  .status-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--input-border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--text);
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 8px;
  }

  .presence-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--input-border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--text);
    font-size: 14px;
  }

  .status-length {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .status-link {
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
  }

  .status-mention {
    color: var(--accent-2);
    font-weight: 600;
    cursor: pointer;
  }

  .user-status-badge {
    padding: 8px 12px;
    background: var(--card-top);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    margin: 8px 0;
  }

  .status-presence {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
  }

  .status-presence.online { background-color: #50C878; }
  .status-presence.away { background-color: #FFB800; }
  .status-presence.dnd { background-color: #FF6B6B; }
  .status-presence.offline { background-color: #CCCCCC; }

  .status-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
  }

  .status-time {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
  }

  .presence-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
