.payment-report-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 20px 0;
    padding: 22px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.payment-report-card h2 { margin: 5px 0 4px; font-size: 1.15rem; }
.payment-report-card p,
.payment-report-card > small { margin: 0; color: #64748b; font-size: .76rem; }
.payment-report-card form { display: flex; align-items: end; gap: 10px; min-width: 390px; }
.payment-report-card label { display: grid; flex: 1; gap: 6px; color: #475569; font-size: .72rem; font-weight: 800; }
.payment-report-card select { height: 42px; padding: 0 36px 0 12px; border: 1px solid #d8e0eb; border-radius: 10px; background: #fff; }
.payment-report-card button:disabled { cursor: not-allowed; opacity: .55; }

@media (max-width: 780px) {
    .payment-report-card { align-items: stretch; flex-direction: column; }
    .payment-report-card form { align-items: stretch; flex-direction: column; min-width: 0; }
}
