/* Basis-Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Styles */
} 

.login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Einheitliches Button-Styling */
button,
.button,
.action-button,
#logoutBtn,
.chart-button,
.fullscreen-link button {
    background: #00E47C;
    color: #000;
    border: none;
    padding: 0.8em 1.5em;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
.button:hover,
.action-button:hover,
#logoutBtn:hover,
.chart-button:hover,
.fullscreen-link button:hover {
    background: #00c868;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.option {
    padding: 1rem;
    margin: 0.5rem 0;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    background-color: #e9ecef;
}

.option.selected {
    background-color: #007bff;
    color: white;
    transform: scale(1.02);
}

#completionMessage {
    text-align: center;
    padding: 2rem;
}

#completionMessage button {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
} 