/* filepath: /workspaces/codespaces-blank/style.css */

/* Dark Mode Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="number"] {
    padding: 10px;
    font-size: 16px;
    background-color: #2c2c2c;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
}

button {
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #0056b3;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #004494;
}

.message {
    margin-top: 20px;
    font-size: 14px;
    color: #28a745;
    text-align: center;
}


a {
    color: #ffffff;
    text-decoration: none;
}
a:hover {
    color: #007bff;
    text-decoration: underline;
}
a:visited {
    color: #0056b3;
}
a:active {
    color: #004494;
}