/* Login Page Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 400px;
    margin: 100px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

h2 {
    color: #333;
    border-bottom: 1px solid #0078d4;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #777;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #0078d4;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #0054a6;
}

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.links {
    text-align: center;
    margin-top: 15px;
}

.links a {
    color: #0078d4;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

.globale-layer-steuerung {
    position: fixed; /* Fixiert die Position */
    bottom: 20px;    /* 20px vom unteren Rand */
    right: 20px;     /* 20px vom rechten Rand */
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000; /* Stellt sicher, dass es über anderen Inhalten liegt */
    max-height: 80vh; /* Maximale Höhe, um bei vielen Layern scrollbar zu bleiben */
    overflow-y: auto; /* Vertikales Scrollen bei Überlauf */
}
.globale-layer-steuerung div {
    margin-bottom: 8px;
}
.globale-layer-steuerung input[type="checkbox"] {
    margin-right: 5px;
}
.globale-layer-steuerung label {
    display: inline-block; /* Für besseres Layout der Checkboxen */
    color: #333;
}
