

/* Card Styling to match WorkQuote aesthetic */
.card {
    border-radius: 12px;
    overflow: hidden;
}

.bg-success-subtle {
    background-color: #d1e7dd !important; /* Bootstrap var override for consistency */
}

/* Custom Input Styling */
.calc-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: #0d6efd;
}

/* Range Slider Styling */
input[type=range] {
    cursor: pointer;
}

/* Typography spacing */
.ls-1 {
    letter-spacing: 1px;
}

/* Chart Container */
.chart-container {
    position: relative;
}

/* Hide arrow keys on number inputs (Chrome, Safari, Edge, Opera) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrow keys on number inputs (Firefox) */
input[type=number] {
  -moz-appearance: textfield;
}