/* =========================================
   Basis-Styles – Desktop & Allgemein
========================================= */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    background: #f4f6f8;
    color: #1f2328;
}

/* =========================================
   Layout
========================================= */

.container {
    max-width: 420px;
    margin: 80px auto;
    padding: 28px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

h1 {
    margin: 0 0 22px 0;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

/* =========================================
   Formular
========================================= */

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 18px;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    outline: none;
}

input[type="number"]:focus {
    border-color: #1e88e5;
}

/* =========================================
   Button
========================================= */

button {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background: #1e88e5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #166fc0;
}

/* =========================================
   Statusmeldungen
========================================= */

.success {
    padding: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2e7d32;
    background: #e8f5e9;
    border-radius: 6px;
}

.error {
    margin-bottom: 14px;
    padding: 12px;
    font-size: 14px;
    color: #c62828;
    background: #fdecea;
    border-radius: 6px;
}
/* =========================================
   Dashboard-Menü
========================================= */

.menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: block;
    padding: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: #1e88e5;
    border-radius: 6px;
}

.menu-item:hover {
    background: #166fc0;
}

.menu-item.logout {
    background: #9e9e9e;
}

.menu-item.logout:hover {
    background: #7e7e7e;
}
