/* frontend/src/styles/components/calendar-workspace.css
   Calendar right workspace: strip, card area, and ghost/empty states */

/* ── Workspace ──────────────────────────────────────────────────── */
/* Strip: tonal separation — no border */
.cal-strip {
    background: var(--surface-container-low);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Save All — Trust Blues, Manrope, ghost-border */
.cal-strip-save-all {
    margin-left: auto;
    font-family: var(--font-headline);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: none;
    border: var(--ghost-border);
    border-radius: 4px;
    padding: 3px 12px;
    cursor: pointer;
    color: var(--primary);
}
.cal-strip-save-all:hover {
    background: var(--secondary-container);
    border-color: rgba(0, 91, 193, 0.2);
}

/* Minimized chips — ghost-border */
.cal-strip-chip {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--surface-container-lowest);
    border: var(--ghost-border);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: var(--font-headline);
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--on-surface);
}

.cal-strip-chip-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--on-surface-variant);
    font-size: 0.75rem;
    padding: 0 2px;
    line-height: 1;
}
.cal-strip-chip-btn--close { color: var(--error); }

.cal-card-area {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: stretch;
    min-height: 0;
}

/* ── Ghost empty state (editorial placeholder) ───────────────────── */
.cal-workspace-empty {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: stretch;
}

/* Ghost card slot — dashed outline, no text */
.cal-ghost-slot {
    flex: 1;
    border-radius: 8px;
    border: 1.5px dashed rgba(173, 179, 181, 0.28);
    background: linear-gradient(160deg, var(--surface-container-low) 0%, transparent 80%);
    min-height: 240px;
}

/* Hint slot — softer outline, centered label */
.cal-ghost-slot--hint {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dashed;
    border-color: rgba(173, 179, 181, 0.18);
    background: none;
    flex-direction: column;
    gap: 8px;
}

.cal-workspace-empty-label {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--on-surface-variant);
    opacity: 0.45;
    text-align: center;
    line-height: 1.5;
    padding: 0 20px;
    letter-spacing: -0.01em;
}
