﻿input[type=range],
input#totalSlices,
input#eatenSlices {
    -webkit-appearance: slider-horizontal !important;
    -moz-appearance: range !important;
    appearance: slider-horizontal !important;
    display: block !important;
    height: 1.5rem !important;
    width: 100% !important;
}

/* --- Slider 1: Total Slices (Blue Thumb) --- */
#totalSlices::-webkit-slider-thumb {
    background-color: #0d6efd !important; /* Bootstrap Primary Blue */
}

#totalSlices::-moz-range-thumb {
    background-color: #0d6efd !important;
}

/* --- Slider 2: Eaten Slices (Red Thumb) --- */
#eatenSlices::-webkit-slider-thumb {
    background-color: #ff5964 !important; /* Pizza Theme Red */
}

#eatenSlices::-moz-range-thumb {
    background-color: #ff5964 !important;
}

.main-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 3px solid #ff9f1c;
    padding: 16px !important;
}

.slider-container {
    background: #ffffff;
    border: 2px solid #e0e6ed;
    border-radius: 14px;
    padding: 8px 12px;
}

#pizzaCanvas {
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.12));
    max-width: 100%;
    height: auto;
}

.target-fraction {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    color: #ffea00;
    padding:4px;
}

.btn-action {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    padding: 8px 24px;
    border-radius: 12px;
}

.feedback-message {
    font-size: 1.2rem;
    font-weight: 700;
    min-height: 28px;
}

.text-warning-dark {
    color: #d97706 !important;
}