/* ============================================================
   chatbox_costi.css — Pannello Gestione Costi
   ============================================================ */

#costi-panel {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    z-index: 100;
    font-family: inherit;
    color: #ddd;
}

/* ── Header ─────────────────────────────────────────────────── */
.costi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111;
    padding: 10px 16px;
    border-bottom: 1px solid #2a2a2a;
    flex-shrink: 0;
}
.costi-title  { font-size: 0.95em; font-weight: bold; color: #eee; }
.costi-close  { cursor: pointer; color: #888; font-size: 1.1em; padding: 2px 6px; border-radius: 4px; }
.costi-close:hover { color: #fff; background: #333; }

/* ── Body ────────────────────────────────────────────────────── */
.costi-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    gap: 0;
}

/* ── SX: lista ───────────────────────────────────────────────── */
.costi-left {
    width: 55%;
    border-right: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.costi-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}
.costi-empty {
    color: #555;
    text-align: center;
    padding: 20px;
    font-size: 0.85em;
}
.costi-row {
    background: #222;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 6px;
}
.costi-row-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}
.costi-row-nome  { font-size: 0.9em; color: #eee; font-weight: bold; }
.costi-row-costo { font-size: 0.9em; color: #4ecb82; font-weight: bold; white-space: nowrap; }
.costi-row-desc  { font-size: 0.75em; color: #777; margin-bottom: 6px; }
.costi-row-btns  { display: flex; gap: 6px; }

/* ── DX: form ────────────────────────────────────────────────── */
.costi-right {
    flex: 1;
    padding: 14px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.costi-form-title {
    font-size: 0.85em;
    font-weight: bold;
    color: #aaa;
    margin-bottom: 2px;
}
.costi-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.costi-label {
    font-size: 0.75em;
    color: #888;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.costi-input,
.costi-textarea {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 5px;
    color: #ddd;
    font-size: 0.85em;
    padding: 7px 10px;
    outline: none;
    font-family: inherit;
}
.costi-input:focus,
.costi-textarea:focus { border-color: #2B87F2; }
.costi-textarea { resize: vertical; min-height: 60px; }
.costi-form-btns { display: flex; gap: 8px; margin-top: 4px; }

/* ── Footer ──────────────────────────────────────────────────── */
.costi-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    padding: 8px 16px;
    border-top: 1px solid #2a2a2a;
    flex-shrink: 0;
}
.costi-footer-info { font-size: 0.8em; color: #666; }

/* ── Bottoni ─────────────────────────────────────────────────── */
.costi-btn {
    background: #333;
    border: none;
    border-radius: 5px;
    color: #ccc;
    font-size: 0.82em;
    padding: 6px 12px;
    cursor: pointer;
    flex: 1;
}
.costi-btn:hover { background: #444; }
.costi-btn-sm    { flex: none; padding: 4px 10px; font-size: 0.78em; }
.costi-btn-primary { background: #2B87F2; color: #fff; }
.costi-btn-primary:hover { background: #1a6fd4; }
.costi-btn-danger  { background: #c0392b; color: #fff; }
.costi-btn-danger:hover  { background: #a93226; }
