body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Custom styles for better checkbox and radio appearance */
input[type="checkbox"], input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    height: 1.25rem;
    width: 1.25rem;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
input[type="radio"] {
    border-radius: 50%;
}
input[type="checkbox"]:checked, input[type="radio"]:checked {
    background-color: #4f46e5; /* indigo-600 */
    border-color: #4f46e5; /* indigo-600 */
}
input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
}
input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 50%;
    height: 0.5rem;
    width: 0.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sidebar {
    height: calc(100vh - 4rem);
}
/* Hide number input arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}