body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top to see content better with more results */
    min-height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 550px; /* Increased max-width for more content */
}

h1 {
    color: #333;
    margin-bottom: 25px;
}

.search-area {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-area label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.search-area input[type="text"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    width: calc(100% - 26px); /* Full width minus padding and border */
    box-sizing: border-box;
    font-size: 16px;
}

.buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
    width: 100%;
}

.search-area button {
    color: white;
    border: none;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-grow: 1; /* Make buttons share space */
}

#searchButton {
    background-color: #007bff;
}
#searchButton:hover {
    background-color: #0056b3;
}

#resetButton {
    background-color: #6c757d; /* A neutral grey */
}
#resetButton:hover {
    background-color: #545b62;
}


#resultArea {
    margin-top: 20px;
    min-height: 100px; /* To prevent layout shift */
    width: 100%;
}

.result-day {
    background-color: #e9f7ef; /* Light green background for each day */
    border: 1px solid #a3e0b7; /* Green border */
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    display: none; /* Hidden by default, shown when there's content */
}

.result-day h2 {
    font-size: 18px;
    color: #155724; /* Darker green for headings */
    margin-top: 0;
    margin-bottom: 8px;
}

.result-day p {
    font-size: 18px; /* Increased font size for results */
    font-weight: bold;
    color: #155724; /* Darker green for result text */
    margin: 0;
}

.result-day p.not-found {
    font-weight: normal;
    font-style: italic;
    color: #721c24; /* Reddish for not found */
}


#messageText {
    font-size: 16px;
    color: #dc3545; /* Red color for errors/info */
    margin-top: 10px;
    min-height: 20px; /* Reserve space for messages */
}