.kco-calendar-container {
    max-width: 1000px;
    margin: 30px auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
}

.kco-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.kco-order-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Card ordine */
.kco-order-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.kco-order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.kco-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.kco-date {
    display: flex;
    flex-direction: column;
}

.kco-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 2px;
}

.kco-value {
    font-size: 18px;
    font-weight: 600;
}

.kco-pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f0f7ff;
    border: 1px solid #c7defb;
    color: #225aaf;
}

.kco-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.kco-card-footer {
    margin-top: 12px;
    text-align: right;
}

/* Pulsante */
.kco-btn {
    background: #0073aa;
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    font-size: 13px;
    font-weight: 600;
}

.kco-btn:hover {
    background: #005f8d;
}

/* Modale */
.kco-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.kco-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 650px;
    margin: 60px auto;
    padding: 24px 24px 18px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    position: relative;
}

.kco-close {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 24px;
    cursor: pointer;
}

#kco-modal-body h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

/* Tabella dettagli */
.kco-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.kco-details-table tr:nth-child(odd) {
    background: #fafafa;
}

.kco-details-table td {
    padding: 6px 8px;
    vertical-align: top;
}

.kco-details-label {
    width: 40%;
    color: #555;
}

.kco-details-value {
    width: 60%;
}

/* Responsive */
@media (max-width: 768px) {
    .kco-info {
        grid-template-columns: 1fr;
    }

    .kco-modal-content {
        margin: 40px auto;
        padding: 18px 18px 14px;
    }
}
