body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

h1, h2 {
    color: #1c1e21;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

select, input[type="number"], button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

button {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

.notification {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.status-card {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.status-card h3 {
    margin-top: 0;
}

/* Zusätzliche Stile für home.html */
.user-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.button-link {
    display: block;
    padding: 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

.button-link:hover {
    background-color: #0056b3;
}

/* Zusätzliche Stile für user_page.html */
.single-status {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.footer-link {
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer-link a {
    color: #007bff;
    text-decoration: none;
}
