:root {
    --wq-primary: #0d6efd; /* Bootstrap Primary - referenced by JS for chart */
}

#laborBurdenForm .input-group-text {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Pie Chart - Custom implementation (Bootstrap has no native conic charts) */
.pie-chart-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--wq-primary) 0% 0%, #e2e8f0 0% 100%);
    margin: 0 auto 1.5rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-chart-inner {
    width: 110px;
    height: 110px;
    background: #f8f9fa; /* Matches bg-light */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Utility: Dashed border for receipt-style lists */
.border-dashed {
    border-bottom: 1px dashed #dee2e6;
}

/* Utility: Pointer for tooltips */
.cursor-help {
    cursor: help;
}

/* Utility: Range slider track color fix */
.form-range::-webkit-slider-thumb {
    background: var(--wq-primary);
}