body {
    font-family: Arial, sans-serif;
    background-color: #0d1117;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #161b22;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    width: 300px;
}

h1 {
    text-align: center;
    color: #f0f6fc;
}

.form-group {
    margin-bottom: 15px;
}

input[type="date"],
input[type="number"],
input[type="text"] {
    width: 60%;
    padding: 10px;
    color-scheme: dark;
    border: 1px solid #30363d;
    border-radius: 4px;
    margin-right: 5%;
    display: inline-block;
    background-color: #0d1117;
    color: #c9d1d9;
}

button {
    width: 25%;
    padding: 10px;
    background-color: #238636;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

button:hover {
    background-color: #2ea043;
}