.cash-report-page {
    min-height: 100vh;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.12), transparent 36%),
        linear-gradient(135deg, #f8fafc, #eef3f8);
    color: #0f172a;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.cash-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    background: rgba(255,255,255,.82);
    border: 1px solid #dbe5ef;
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(15,23,42,.07);
}

.cash-report-header h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -.8px;
}

.back-pos-btn {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    border: 0;
    padding: 13px 18px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(15,118,110,.20);
}

.report-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.report-card {
    background: rgba(255,255,255,.92);
    border: 1px solid #dbe5ef;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15,23,42,.07);
    text-align: left;
}

.report-card h3 {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.report-card span {
    font-size: 34px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -.9px;
}

.report-card.total {
    background: linear-gradient(135deg, #0f172a, #0f766e);
    border-color: transparent;
}

.report-card.total h3,
.report-card.total span {
    color: white;
}

.salesperson-report {
    margin-top: 26px;
    background: rgba(255,255,255,.92);
    border: 1px solid #dbe5ef;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(15,23,42,.07);
    overflow: hidden;
}

.salesperson-table {
    width: 100%;
    border-collapse: collapse;
}

.salesperson-table th {
    background: #0f766e;
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.salesperson-table td {
    padding: 15px;
    border-bottom: 1px solid #edf2f7;
    font-weight: 700;
}

.salesperson-table tr:hover {
    background: #f8fafc;
}

@media (max-width: 900px) {
    .report-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
