:root {
    --primary-color: #1f6feb;
    --light-bg: #f8fafc;
}

body {
    background-color: var(--light-bg);
}

.provider-card {
    border-radius: 0.8rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: none;
}

.orders-list .card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
}

.receipt-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.token-input {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.muted-text {
    color: #64748b;
    font-size: 0.9rem;
}

/* Response Modal Styles */
#responseModal .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.transaction-card {
    border-left: 3px solid var(--primary-color);
    transition: box-shadow 0.2s;
}

.transaction-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.transaction-card .form-range {
    flex: 1;
    margin: 0 1rem;
}

.transaction-card .form-check {
    margin-bottom: 0.5rem;
}

.transaction-card .form-check:last-child {
    margin-bottom: 0;
}

#responsePatientInfo {
    border-left: 4px solid var(--primary-color);
}

/* Slider input styling */
.transaction-response input[type="range"] {
    cursor: pointer;
}

.transaction-response input[type="number"] {
    max-width: 150px;
}

/* Required field indicator */
.transaction-card .badge.bg-danger {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

