/* Global Styles */
body {
    font-family: 'Consolas', monospace;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.8); /* Slightly opaque white for background */
    backdrop-filter: blur(10px); /* Blurred background */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Container Styles */
.container {
    background-color: white; /* White background for the container */
    border-radius: 12px; /* Rounded corners */
    padding: 2rem; /* Padding around the content */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
    width: 400px; /* Fixed width */
}

/* Heading Styles */
h2 {
    font-family: 'Consolas', monospace;
    text-align: center; /* Center align the heading */
    color: #333; /* Dark color for contrast */
}

/* Input and Select Styles */
input[type="date"],
select {
    border: 2px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners for inputs */
    padding: 0.5rem; /* Padding inside inputs */
    width: 100%; /* Full width */
    margin-bottom: 1rem; /* Margin below each input */
    transition: border-color 0.3s ease; /* Transition for border color */
}

input[type="date"]:focus,
select:focus {
    border-color: #007BFF; /* Change border color on focus */
    outline: none; /* Remove default outline */
}

/* Button Styles */
button {
    background-color: #007BFF; /* Primary blue color */
    color: white; /* White text */
    padding: 0.75rem; /* Padding inside button */
    width: 100%; /* Full width */
    border: none; /* Remove default border */
    border-radius: 8px; /* Rounded corners for buttons */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions for hover */
}

/* Button Hover Effects */
button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

button:active {
    transform: translateY(0); /* Reset lift on click */
}

/* Success and Error Messages */
.message {
    text-align: center; /* Center align messages */
    margin-top: 1rem; /* Margin above messages */
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease; /* Fade effect for messages */
}

.message.show {
    opacity: 1; /* Fade in effect */
}

/* Add additional styles here as needed */
