/* static/css/midlifecrisis.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 40px;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    text-align: center;
}
.container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1e1e1e; /* Darker container background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
h1 {
    color: #64ffda; /* Aqua accent for headings */
    font-size: 2.2em;
    margin-bottom: 0.8em;
}
label {
    display: block;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #bbbbbb;
}
input[type="text"], select {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #333333;
    border-radius: 6px;
    background-color: #2c2c2c;
    color: #e0e0e0;
    box-sizing: border-box;
}
button {
    margin-top: 25px;
    padding: 12px 25px;
    background-color: #bb86fc; /* Purple accent for button */
    color: #121212;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #64ffda; /* Aqua on hover */
}
.result-box {
    margin-top: 40px;
    padding: 20px;
    background-color: #388e3c; /* Darker green for success */
    border-radius: 8px;
    text-align: left;
    border: 1px solid #64ffda;
}
.back-link {
    display: block;
    margin-top: 30px;
    color: #bb86fc;
    text-decoration: none;
}