body {
    
    background-color: #fff9e6;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    margin: 30px auto;
    max-width: 75%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.2) !important;
     border: 4px solid #fefffb;

}

h1 {
    margin: 0;
    font-size: 2.5em;
}

.form {
     border: 4px solid #fefffb;
    margin: 30px auto;
    max-width: 75%;
    height:fit-content;
    background: #ffeeb8;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h2 {
    color: #665c00;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.form-group label {
    flex: 1;
    text-align: left;
    font-size: 1.4em;
}

.form-group input {
    flex: 2;
    padding: 12px;
    font-size: 1.3em;
}

input[type="text"],
input[type="number"],
input[type="time"],
input[type="date"] {
    border-radius: 8px;
    border: 1px solid #7a7041;
    width: 100%;
    box-sizing: border-box;
}



.button{
    display: flex;
    flex-direction: row; 
    justify-content:center;
    margin:5px 20px;
    
}
.button .item{
    padding: 10px 20px;
    cursor: pointer;
    background-color: #ffeaa6;
    border-radius: 20px;
    margin: 20px;
    font-family: "Vidaloka", serif;
    font-weight: 500;
    font-size: 20px;
    color: #100e06;
    box-shadow: 10px 10px 20px 5px rgba(10, 10, 6, 0.2) !important;
    border: 2px solid #fdfdfd;
}
.button .item:hover{
    background-color: #ffffff;
    color: #050505;
    box-shadow: 10px 10px 20px 5px rgba(206, 130, 130, 0.2) !important;
}


footer {
    
    color: #665c00;
    font-size: 0.9em;
    border-radius: 15px;
    box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.2) !important;
 border: 4px solid #fefffb;
    margin: 30px auto;
    max-width: 75%;
    padding: 20px;
}



@media (max-width: 480px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-group label, 
    .form-group input {
        width: 100%;
    }
}
/* 
#daysGroup{
    display: grid;
    gap:15px;
    grid-template-areas: "sun mon tue wed",
                "thu fri sat";
}
#daysGroup label {
    display: inline-block;
    width: 100px;
    text-align: center;
}
.mon{
    grid-area:"mon"; ;
}
.tue{
    grid-area:"tue"; ;
}
.wed{
    grid-area:"wed"; ;
}
.thu{
    grid-area:"thu"; ;
}            
.fri{
    grid-area:"fri"; ;
}
.sat{
    grid-area:"sat"; ;
}
.sun{
    grid-area:"sun"; ;
}    */

/* #frequencyInput{
     border-radius: 8px;
    border: 1px solid #141412;
    width: 15%;
    height: 20px;
    font-size: 10px;

} */

#daysGroup {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    margin-left: 0; /* Reset margin to stay aligned */
}

#daysGroup label {
    min-width: 200px;
}

.days-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 100px; /* Add margin to the left for spacing */
}

select {
    flex: 2;
    padding: 12px;
    font-size: 1.3em;
    border-radius: 8px;
    border: 1px solid #7a7041;
    width: 100%;
    box-sizing: border-box;
    background-color: white; /* Match input background */
    cursor: pointer;
}

/* To match the hover effect of your buttons */
select:hover {
    border-color: #665c00;
}

/* Focus state to match your design system */
select:focus {
    outline: none;
    border-color: #665c00;
    box-shadow: 0 0 0 2px rgba(102, 92, 0, 0.2);
}


.search-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px auto;
    height: 10%;
    width: 50%;
    border-radius: 25px;
}
.searchBox{
    flex: 1;
    border: none;
    outline: none;
    padding: 12px ;
    width: 100%;
    border-radius: 25px;
    font-size: 15px;
    font-family:"Playfair Display", serif;
    margin: 0px;
    box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.2) !important;
}
.searchButton{
    border: none;
    background: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
    font-size: 25px;
}
.searchButton:hover{
    background-color: #504E76;
}
