/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff9e6; /* Light yellow background */
    color: #333; /* Dark text for contrast */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff; /* White background for containers */
    border: 2px solid #ffeb3b; /* Lemon yellow border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 80%;
    max-width: 600px;
}

h1 {
    color: #ffeb3b; /* Lemon yellow headers */
}

button {
    background-color: #ffeb3b; /* Lemon yellow buttons */
    border: none;
    border-radius: 5px;
    color: #333; /* Dark text */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ffd700; /* Darker lemon yellow on hover */
}

input[type="number"] {
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ffeb3b; /* Lemon yellow border */
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

label {
    display: block;
    margin: 10px 0;
    font-weight: bold;
}
