/* Body styling */

body {
    font-family: "Arial", sans-serif;
    background: linear-gradient(180deg, #b186f1, #2a2359);
    color: #333;
    margin: 0;
}


/* Comment out existing header styles */

header {
    background-color: #b186f1;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}


/* Section styling */

h3 {
    background-color: #2a2359;
    color: #b186f1;
    text-align: center;
    padding: 10px;
    margin: 0;
}


/* Comment out existing form styles */


/* form {
    background-color: #3f365c;
    color: #b186f1;
    padding: 20px;
} */


/* Input and select fields styling */

input[type="text"],
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    background-color: #554a75;
    color: #b186f1;
}


/* Button styles */

#submit {
    background-color: #6b5d8a;
    color: #b186f1;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}


/* Slider styling */

.slider {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 10px;
}

.description {
    color: #2a2359;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}


/* New container for hours (horizontal layout) */

.hour-container {
    display: flex;
    /* Display hours horizontally */
    overflow: auto;
    /* Add a scrollbar if needed */
    white-space: nowrap;
    /* Prevent line breaks in the container */
}


/* .hour-container {
    /* display: flex;
    /* Display hours horizontally 
    justify-content: center;
    /* align-items: center; 
} */

.hour-divider {
    background-color: #f0f0f0;
    border: 1px solid #b186f1;
    padding: 10px;
    text-align: center;
    /*float: left; */
    margin-right: 5px;
    /* Add margin to separate the hour dividers */
    /* width: calc(20% - 10px); */
    /* Adjust the width to fit 5 hours horizontally */
}


/* Comment out existing table styles */


/* table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

th,
td {
    padding: 12px;
    text-align: left;
    border: 1px solid #b186f1;
}

th {
    background-color: #b186f1;
    color: #fff;
}

tr:nth-child(even) {
    background-color: #f0f0f0;
} */


/* Footer styling */

footer {
    background-color: #b186f1;
    color: #2a2359;
    text-align: center;
    padding: 10px;
}