/* Styles für das Menü */
header {
    background-color: #00796b;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-icon {
    cursor: pointer;
}

.menu-icon i {
    font-size: 24px;
}

#menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu.hidden {
    display: none;
}

#menu li {
    margin-left: 20px;
}

#menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Styles für das Formular */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.container:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

input[type="number"]:focus,
select:focus {
    border-color: #00796b;
    outline: none;
}

.result {
    margin-top: 20px;
    padding: 20px;
    background-color: #e0f7fa;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2em;
    color: #00796b;
}

.result p {
    margin: 10px 0;
}

.highlight {
    font-size: 1.5em;
    font-weight: bold;
}

.reset-button {
    width: 100%;
    padding: 10px;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-button i {
    margin-left: 10px;
}

.reset-button:hover {
    background-color: #005f54;
}

/* Styles für die Willkommensseite */
.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 20px;
    margin-bottom: 125px; /* Abstand von 125 Pixeln vom unteren Rand */
}

.welcome-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.welcome-button {
    width: 80%;
    max-width: 300px;
    padding: 15px;
    margin: 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1); /* Glaseffekt */
    backdrop-filter: blur(10px); /* Glaseffekt */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.classic-view {
    background-color: rgba(0, 121, 107, 0.7); /* Glaseffekt-Farbe */
}

.classic-view:hover {
    background-color: rgba(0, 95, 84, 0.7); /* Hover-Farbe */
}

.advanced-view {
    background-color: rgba(211, 47, 47, 0.7); /* Glaseffekt-Farbe */
}

.advanced-view:hover {
    background-color: rgba(183, 28, 28, 0.7); /* Hover-Farbe */
}

@media (max-width: 600px) {
    #menu {
        flex-direction: column;
        align-items: center;
    }

    #menu li {
        margin-left: 0;
        margin-top: 10px;
    }
}
