/* Entire body content centered, with dark mode styling */
body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    /* Dark background color */
    color: #e0e0e0;
    /* Light text color for contrast */
    font-family: Arial, sans-serif;
    /* Optional: Sets a default font */
}

/* Styling for the content area */
.content {
    text-align: center;
    background-color: #242424;
    /* Slightly lighter dark shade for content area */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Adjusted shadow for depth */
}

/* Styles for the date picker and button */
#birthdayPicker,
button {
    font-size: 16px;
    padding: 10px;
    margin: 10px 0;
    /* Adds some space around the elements */
    border: 1px solid #333;
    /* Dark border for the inputs */
    background-color: #333;
    /* Dark input backgrounds */
    color: #e0e0e0;
    /* Light text for readability */
    border-radius: 5px;
    /* Rounded corners */
    box-sizing: border-box;
    /* Ensures padding does not increase the size */
}

button {
    cursor: pointer;
    background-color: #007bff;
    /* Keeping the button color for visibility */
    border: none;
    /* Removes the border for the button */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
}

button:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}