
/* Report styles - matches existing control panel design */
.control-panel-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.control-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.control-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.control-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Button styles matching the original design */
.control-button {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.control-button.active {
    background-color: #3b82f6;
    color: white;
}

.control-button:not(.active) {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.control-button:not(.active):hover {
    background-color: #bfdbfe;
}

.bucket-button {
    background-color: #fef3c7;
    color: #d97706;
}

.bucket-button.active {
    background-color: #f59e0b;
    color: white;
}

.bucket-button:not(.active):hover {
    background-color: #fde68a;
}
