/* Dashboard Container */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Card KPI */
.kpi-card {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border-left: 6px solid #ff7a00;
}

.kpi-value {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 4px;
}

.kpi-label {
    color: #777;
    font-size: 14px;
}

/* Ticket List */
.ticket-row {
    padding: 14px 18px;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 12px;
    border: 1px solid #ddd;
}

.ticket-row:hover {
    background: #f6f6f6;
}

.status-tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* STATUS COLORS */
.status-open {
    background: #fde4d0;
    color: #c46a00;
}

.status-progress {
    background: #e4f2ff;
    color: #0058a3;
}

.status-pending {
    background: #fff5c4;
    color: #b39a00;
}

.status-done {
    background: #dff8e6;
    color: #1d7c3a;
}
