body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #121212;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
}

h1 {
    font-size: 1.5rem;
    color: #ffa726;
    margin-bottom: 10px;
}

.value {
    color: #4caf50; /* Bright green for values */
    font-weight: bold;
    margin: 5px 0;
}

.highlight {
    color: #ffeb3b; /* Bright yellow */
    font-weight: bold;
    background-color: #333;
    padding: 5px;
    border-radius: 5px;
}

input[type="date"] {
    margin: 10px 0;
    padding: 8px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #1e1e1e;
    color: #ffa726;
    font-size: 1rem;
}
