/* ═══════════════════════════════════════════════════════════════════
   Commessa.ai — Operator Mobile Design System
   Usato da OperatorShell.razor e pagine /operatore/*
   ═══════════════════════════════════════════════════════════════════ */

/* ── Variabili colore ────────────────────────────────────────────── */
:root {
    --op-primary:        #001B48;
    --op-primary-hover:  #002A6B;
    --op-primary-soft:   #EAF0F8;
    --op-primary-subtle: #F3F6FA;

    --op-text:           #001B48;
    --op-text-secondary: #60748F;
    --op-text-muted:     #8FA0B5;

    --op-background: #F5F7FB;
    --op-surface:    #FFFFFF;
    --op-border:     #DDE5EF;

    --op-success:    #287A38;
    --op-success-bg: #EDF8EF;
    --op-success-text: #1d5728;

    --op-warning:    #A86900;
    --op-warning-bg: #FFF7E3;
    --op-warning-text: #7a4c00;

    --op-danger:     #B43A34;
    --op-danger-bg:  #FDEEEE;
    --op-danger-text: #8b2a25;
}

/* ── Top Bar ─────────────────────────────────────────────────────── */
.op-topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    height: 60px;
    background: var(--op-surface);
    border-bottom: 1px solid var(--op-border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}

.op-topbar__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--op-text);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}
.op-topbar__back:hover { background: var(--op-primary-soft); }

.op-topbar__title {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--op-text);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op-topbar__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--op-text-secondary);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}
.op-topbar__action:hover { background: var(--op-primary-soft); }
.op-topbar__badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--op-danger);
    border-radius: 50%;
}

/* ── Body ────────────────────────────────────────────────────────── */
.op-page {
    min-height: calc(100vh - 60px);
    padding: 16px 16px calc(88px + env(safe-area-inset-bottom));
    background: var(--op-background);
}

.op-page-title {
    color: var(--op-primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px;
}
.op-page-subtitle {
    color: var(--op-text-secondary);
    font-size: 14px;
    margin: 0 0 20px;
}

/* ── Bottom Navigation ───────────────────────────────────────────── */
.op-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 72px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #ffffff;
    border-top: 1px solid var(--op-border);
    box-shadow: 0 -1px 8px rgba(0, 27, 72, 0.06);
}

.op-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--op-text-muted);
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 4px;
    min-height: 44px;
    transition: color 0.15s;
    cursor: pointer;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}
.op-bottom-nav__item:hover,
.op-bottom-nav__item:focus { color: var(--op-primary-hover); outline: none; }
.op-bottom-nav__item--active { color: var(--op-primary); font-weight: 700; }
.op-bottom-nav__label { line-height: 1; }

/* Cerchio "+" per Nuovo */
.op-bottom-nav__dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--op-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    transition: background 0.15s;
}
.op-bottom-nav__item--active .op-bottom-nav__dot { background: var(--op-primary-hover); }

/* ── Card ────────────────────────────────────────────────────────── */
.op-card {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}
.op-card--clickable { cursor: pointer; transition: background 0.15s; }
.op-card--clickable:hover { background: var(--op-primary-subtle); }
.op-card--selected {
    border-color: var(--op-primary);
    background: var(--op-primary-soft);
}
.op-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.op-card__title { font-size: 15px; font-weight: 600; color: var(--op-text); margin: 0; }
.op-card__sub { font-size: 13px; color: var(--op-text-secondary); margin: 2px 0 0; }
.op-card__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--op-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

/* ── Bottoni ─────────────────────────────────────────────────────── */
.op-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s, background 0.15s;
    text-decoration: none;
    width: 100%;
    border: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.op-btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.op-btn--primary { background: var(--op-primary); color: #ffffff; }
.op-btn--primary:hover:not(:disabled) { background: var(--op-primary-hover); }

.op-btn--secondary {
    background: var(--op-surface);
    color: var(--op-primary);
    border: 1.5px solid var(--op-primary);
}
.op-btn--secondary:hover:not(:disabled) { background: var(--op-primary-soft); }

.op-btn--ghost { background: var(--op-primary-soft); color: var(--op-primary); border: none; }
.op-btn--ghost:hover:not(:disabled) { background: var(--op-primary-subtle); }
.op-btn--sm { min-height: 40px; font-size: 13px; border-radius: 8px; }

.op-btn-row { display: flex; gap: 10px; margin-top: 16px; }
.op-btn-row .op-btn { flex: 1; }

/* ── Stepper ─────────────────────────────────────────────────────── */
.op-stepper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.op-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
}
.op-stepper__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 13px;
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
    height: 2px;
    background: var(--op-border);
    z-index: 0;
}
.op-stepper__step--done::after { background: var(--op-primary); }

.op-stepper__circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid var(--op-border);
    background: var(--op-surface);
    color: var(--op-text-muted);
    z-index: 1;
    transition: all 0.2s;
}
.op-stepper__step--active .op-stepper__circle {
    background: var(--op-primary);
    border-color: var(--op-primary);
    color: #fff;
}
.op-stepper__step--done .op-stepper__circle {
    background: var(--op-primary-soft);
    border-color: var(--op-primary);
    color: var(--op-primary);
}
.op-stepper__label { font-size: 11px; color: var(--op-text-muted); white-space: nowrap; text-align: center; }
.op-stepper__step--active .op-stepper__label { color: var(--op-primary); font-weight: 600; }
.op-stepper__step--done .op-stepper__label { color: var(--op-primary); }

/* ── Inputs ──────────────────────────────────────────────────────── */
.op-textarea {
    width: 100%;
    min-height: 240px;
    border: 1.5px solid var(--op-border);
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    color: var(--op-text);
    background: var(--op-surface);
    resize: vertical;
    font-family: inherit;
    line-height: 1.55;
    outline: none;
    transition: border-color 0.15s;
}
.op-textarea:focus { border-color: var(--op-primary); }
.op-textarea::placeholder { color: var(--op-text-muted); }
.op-charcount { text-align: right; font-size: 12px; color: var(--op-text-muted); margin-top: 6px; }

.op-input {
    width: 100%;
    height: 52px;
    border: 1.5px solid var(--op-border);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
    color: var(--op-text);
    background: var(--op-surface);
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s;
}
.op-input:focus { border-color: var(--op-primary); }
.op-input::placeholder { color: var(--op-text-muted); }

.op-label { display: block; font-size: 13px; font-weight: 600; color: var(--op-text-secondary); margin-bottom: 6px; }

/* ── Quick actions ───────────────────────────────────────────────── */
.op-quick-actions { display: flex; gap: 10px; margin-top: 12px; }
.op-quick-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
    font-family: inherit;
}
.op-quick-btn--mic   { background: var(--op-success-bg); color: var(--op-success); }
.op-quick-btn--photo { background: var(--op-primary-soft); color: var(--op-primary); }
.op-quick-btn--recording {
    background: #fde8e8;
    color: var(--op-danger);
    animation: op-pulse 1.2s ease-in-out infinite;
}
@keyframes op-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; } }

/* ── Badge ───────────────────────────────────────────────────────── */
.op-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.op-badge--success { background: var(--op-success-bg); color: var(--op-success); }
.op-badge--warning { background: var(--op-warning-bg); color: var(--op-warning); }
.op-badge--danger  { background: var(--op-danger-bg);  color: var(--op-danger); }
.op-badge--neutral { background: var(--op-primary-soft); color: var(--op-primary); }

/* ── Rapportini list ─────────────────────────────────────────────── */
.op-day-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--op-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 8px;
}
.op-day-label:first-child { margin-top: 0; }

.op-report-card {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}
.op-report-card:hover { background: var(--op-primary-subtle); }
.op-report-card__body { flex: 1; min-width: 0; }
.op-report-card__site { font-size: 15px; font-weight: 600; color: var(--op-text); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.op-report-card__meta { font-size: 13px; color: var(--op-text-secondary); margin: 3px 0 0; }
.op-report-card__right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }

/* ── KPI ─────────────────────────────────────────────────────────── */
.op-kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.op-kpi-card {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
}
.op-kpi-card--primary { background: var(--op-primary); border-color: var(--op-primary); }
.op-kpi-card--primary .op-kpi-val { color: #fff; }
.op-kpi-card--primary .op-kpi-lbl { color: rgba(255,255,255,0.7); }
.op-kpi-val { font-size: 20px; font-weight: 700; color: var(--op-primary); line-height: 1.1; }
.op-kpi-unit { font-size: 13px; font-weight: 400; }
.op-kpi-lbl { font-size: 11px; color: var(--op-text-muted); margin-top: 2px; }

/* ── Bar chart ore ───────────────────────────────────────────────── */
.op-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.op-bar-label { width: 120px; font-size: 13px; color: var(--op-text); flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.op-bar-track { flex: 1; height: 6px; background: var(--op-primary-soft); border-radius: 3px; overflow: hidden; }
.op-bar-fill  { height: 100%; background: var(--op-primary); border-radius: 3px; transition: width 0.6s ease; }
.op-bar-value { font-size: 12px; font-weight: 600; color: var(--op-primary); white-space: nowrap; min-width: 38px; text-align: right; }

/* ── Profilo ─────────────────────────────────────────────────────── */
.op-profile-header {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.op-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--op-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.op-profile-name { font-size: 18px; font-weight: 700; color: var(--op-text); margin: 0; }
.op-profile-role { font-size: 13px; color: var(--op-text-secondary); margin: 2px 0 0; }

.op-dl { display: flex; flex-direction: column; gap: 10px; }
.op-dl dt { font-size: 11px; font-weight: 600; color: var(--op-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.op-dl dd { font-size: 15px; color: var(--op-text); margin: 0; }

/* ── Alert scadenze ──────────────────────────────────────────────── */
.op-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
}
.op-alert--danger  { background: var(--op-danger-bg);  border: 1px solid #f3c4c2; }
.op-alert--warning { background: var(--op-warning-bg); border: 1px solid #fce0a6; }
.op-alert--success { background: var(--op-success-bg); border: 1px solid #b6dfc0; }
.op-alert__ico { font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.op-alert--danger  .op-alert__ico { color: var(--op-danger); }
.op-alert--warning .op-alert__ico { color: var(--op-warning); }
.op-alert--success .op-alert__ico { color: var(--op-success); }
.op-alert__body { flex: 1; }
.op-alert__title { font-size: 14px; font-weight: 600; display: block; }
.op-alert--danger  .op-alert__title { color: var(--op-danger-text); }
.op-alert--warning .op-alert__title { color: var(--op-warning-text); }
.op-alert--success .op-alert__title { color: var(--op-success-text); }
.op-alert__meta { font-size: 12px; color: var(--op-text-secondary); display: block; margin-top: 2px; }

/* ── Document row ────────────────────────────────────────────────── */
.op-doc-row { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--op-border); }
.op-doc-row:last-child { border-bottom: none; }
.op-doc-row__body { flex: 1; min-width: 0; }
.op-doc-row__title { font-size: 14px; font-weight: 600; color: var(--op-text); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.op-doc-row__meta  { font-size: 12px; color: var(--op-text-secondary); margin: 2px 0 0; }

/* ── Tab bar ─────────────────────────────────────────────────────── */
.op-tab-bar {
    display: flex;
    gap: 4px;
    background: var(--op-primary-subtle);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 16px;
}
.op-tab {
    flex: 1;
    padding: 8px 0;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    color: var(--op-text-secondary);
    transition: all 0.15s;
    font-family: inherit;
}
.op-tab--active { background: var(--op-surface); color: var(--op-primary); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

/* ── Period selector ─────────────────────────────────────────────── */
.op-period-select {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.op-period-select__label { flex: 1; font-size: 15px; font-weight: 600; color: var(--op-text); }
.op-period-select__nav {
    background: none;
    border: none;
    color: var(--op-text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 6px;
}
.op-period-select__nav:hover { background: var(--op-primary-soft); color: var(--op-primary); }

/* ── Search ──────────────────────────────────────────────────────── */
.op-search-wrap { position: relative; margin-bottom: 12px; }
.op-search-wrap .op-search-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--op-text-muted); pointer-events: none; }
.op-search-wrap .op-input { padding-left: 42px; }

/* ── Location chip ───────────────────────────────────────────────── */
.op-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--op-primary-soft);
    color: var(--op-primary);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ── Photo preview ───────────────────────────────────────────────── */
.op-photo-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.op-photo-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--op-border);
}
.op-photo-remove { position: relative; }
.op-photo-remove__btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--op-danger);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* ── Skeleton ────────────────────────────────────────────────────── */
.op-skeleton {
    background: linear-gradient(90deg, #e8edf5 25%, #f0f4fa 50%, #e8edf5 75%);
    background-size: 200% 100%;
    animation: op-shimmer 1.5s infinite;
    border-radius: 10px;
}
@keyframes op-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ── Empty state ─────────────────────────────────────────────────── */
.op-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; gap: 12px; }
.op-empty__ico { font-size: 40px; color: var(--op-text-muted); }
.op-empty__title { font-size: 16px; font-weight: 600; color: var(--op-text); margin: 0; }
.op-empty__sub { font-size: 14px; color: var(--op-text-secondary); margin: 0; }

/* ── Accordion ───────────────────────────────────────────────────── */
.op-accordion { border: 1px solid var(--op-border); border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.op-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--op-surface);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--op-text);
    font-family: inherit;
}
.op-accordion__body { padding: 0 16px 16px; background: var(--op-surface); display: none; }
.op-accordion--open .op-accordion__body { display: block; }
.op-accordion__icon { transition: transform 0.2s; flex-shrink: 0; }
.op-accordion--open .op-accordion__icon { transform: rotate(180deg); }

/* ── Section head ────────────────────────────────────────────────── */
.op-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.op-section-title { font-size: 16px; font-weight: 700; color: var(--op-text); margin: 0; }
.op-section-action { font-size: 13px; font-weight: 600; color: var(--op-primary); text-decoration: none; background: none; border: none; cursor: pointer; font-family: inherit; }

/* ── Divider ─────────────────────────────────────────────────────── */
.op-divider { height: 1px; background: var(--op-border); margin: 16px 0; }

/* ── Success screen ──────────────────────────────────────────────── */
.op-success-screen { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 48px 24px; gap: 16px; }
.op-success-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--op-success-bg); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--op-success); }
.op-success-title { font-size: 22px; font-weight: 700; color: var(--op-text); margin: 0; }
.op-success-sub   { font-size: 15px; color: var(--op-text-secondary); margin: 0; }

/* ── Responsive tablet ───────────────────────────────────────────── */
@media (min-width: 640px) {
    .op-page {
        padding-left: max(16px, calc(50% - 320px));
        padding-right: max(16px, calc(50% - 320px));
    }
    .op-topbar {
        padding-left: max(16px, calc(50% - 320px));
        padding-right: max(16px, calc(50% - 320px));
    }
}

/* ── Focus visible ───────────────────────────────────────────────── */
.op-btn:focus-visible,
.op-input:focus-visible,
.op-textarea:focus-visible,
.op-bottom-nav__item:focus-visible {
    outline: 2px solid var(--op-primary);
    outline-offset: 2px;
}

/* ── Dashboard ───────────────────────────────────────────────────── */
.op-dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.op-dash-greeting {
    font-size: 18px;
    font-weight: 700;
    color: var(--op-text);
    margin: 0;
}
.op-dash-date {
    font-size: 13px;
    color: var(--op-text-secondary);
    margin: 2px 0 0;
    text-transform: capitalize;
}

/* KPI grid a 2 colonne (override del default 3) */
.op-kpi-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Griglia 2×2 azioni rapide */
.op-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.op-action-card {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 14px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.op-action-card:hover { background: var(--op-primary-subtle); }

.op-action-card--primary {
    background: var(--op-primary);
    border-color: var(--op-primary);
    color: #ffffff;
}
.op-action-card--primary:hover { background: var(--op-primary-hover); }

.op-action-card__ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--op-primary-soft);
    color: var(--op-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.op-action-card--primary .op-action-card__ico {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.op-action-card__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--op-text);
    margin: 0;
    line-height: 1.3;
}
.op-action-card--primary .op-action-card__label { color: #ffffff; }

.op-action-card__meta {
    font-size: 12px;
    color: var(--op-text-muted);
    margin: 2px 0 0;
}
.op-action-card--primary .op-action-card__meta { color: rgba(255,255,255,0.65); }
.op-action-card__meta--warn { color: var(--op-warning) !important; font-weight: 600; }
