.accounts-header {
    margin-bottom: 20px;
}

.upload-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.file-input {
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}

.summary-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.summary-box {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: bold;
    color: #1e293b;
}

.box-green { background-color: #86efac; }
.box-yellow { background-color: #fde047; }
.box-orange { background-color: #fb923c; }

.box-title { font-size: 12px; text-transform: uppercase; }
.box-value { font-size: 18px; }

.custom-invoices-section {
    margin-bottom: 20px;
}

.invoice-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.form-input {
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    flex: 1;
    min-width: 150px;
}

.table-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.report-table th, .report-table td {
    border: 1px solid #e2e8f0;
    padding: 6px 8px;
    text-align: left;
}

.report-table th {
    background-color: #f1f5f9;
    font-weight: 600;
}

.report-table td.number-col {
    text-align: right;
}

.cogs-input {
    width: 70px;
    padding: 4px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    text-align: right;
}

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