.form-grid {
    display: grid;
    gap: 1rem;
}

.param-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.result-table th,
.result-table td {
    padding: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.result-table th {
    text-align: left;
    background-color: #f8f9fa;
}

.totals {
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: #eef;
    border-radius: 0.25rem;
    font-size: 0.85rem;
}

.error-box {
    padding: 1rem;
    border: 1px solid #f5c2c7;
    background: #f8d7da;
    color: #842029;
    border-radius: 0.5rem;
}

.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline;
}

.htmx-request.htmx-indicator {
    display: inline;
}
