/* General styling for the whole page */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Main container for app content */
#app {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
h1{
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center; /* Center text horizontally */
}

h2{
    color: #6A9DD5;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center; /* Center text horizontally */

}

h3{
    text-align: center; /* Center text horizontally */
}

/* Form elements */
input, select, button, .slider {
    display: block;
    margin: 10px 0;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border-color 0.2s;
}

input:focus, select:focus, button:focus, .slider:focus {
    border-color: #007aff;
    outline: none;
}

/* Button styling */
button {
    background-color: #007aff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #005bb5;
}

/* Slider styling */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 15px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    border-radius: 8px;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #007aff;
    cursor: pointer;
    border-radius: 50%;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #007aff;
    cursor: pointer;
    border-radius: 50%;
}

/* Visual cue styling */
.visual-cue {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
}


.checkbox-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.checkbox-container label {
    margin-bottom: 10px;
}
/* 

.slider-container {
    display: flex;
    flex-direction: column;
}

.slider-item {
    margin-bottom: 20px;
}

.slider-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

/* Ensure slider goes all the way to the left */
.slider {
    margin-left: 0;
}

.slider-label {
    display: block;
    text-align: center;
    margin-top: 5px; /* Add space above the label */
} */

.slider-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* This will align the sliders and labels centrally */
}

.slider-container h3 {
    margin-bottom: 10px; /* Space between the heading and the slider */
}

.slider {
    width: 80%; /* Adjust the width as needed */
    margin: 0 auto; /* This centers the slider horizontally within the container */
}

.slider + label {
    display: block; /* Ensures the label appears on a new line */
    text-align: center; /* Centers the text of the label */
    margin-top: 10px; /* Space above the label */
    width: 100%; /* Ensures the label extends across the width of the container */
}
