.cc-summary-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    margin: 20px 0;
}

.cc-summary-header {
    background: #111827;
    color: #fff;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-summary-header small {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 400;
}

.cc-summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.cc-summary-table th,
.cc-summary-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eef0f3;
}

.cc-summary-table th {
    background: #f9fafb;
    color: #6b7280;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .4px;
}

.cc-summary-table td.label {
    color: #374151;
    font-weight: 500;

    display: table-cell;
    font-size: 14px;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
    vertical-align: baseline;
}

.cc-summary-table td.value {
    text-align: right;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.cc-summary-table tr.total-row td {
    background: #f3f4f6;
    font-size: 14px;
    font-weight: 700;
}

.cc-summary-table tr.limit-row td {
    color: #4b5563;
}

.cc-summary-table tr:last-child td {
    border-bottom: none;
}

.cc-tag {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 20px;
    background: #eef2ff;
    color: #3730a3;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cc-summary-header {
        display: block;
    }

    .cc-summary-header small {
        display: block;
        margin-top: 4px;
    }

    .cc-summary-table th,
    .cc-summary-table td {
        padding: 10px 12px;
    }
}