/* In deiner styles.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#map {
    height: 70vh; /* Ändere die Höhe hier, um die Karte kleiner zu machen */
    width: 100%;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #e9ecef;
    color: #343a40;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007bff;
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.role-selection {
    margin-bottom: 20px;
}

.role-btn {
    padding: 10px 20px;
    margin-right: 10px;
    background-color: lightgray;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.role-btn.selected {
    background-color: lightgreen;
}

.role-btn:hover {
    background-color: #d9f2d9;
}

form {
    margin-top: 20px;
}

#auth-key {
    font-weight: bold;
    margin-right: 10px;
}

.role-btn {
    background-color: #d3d3d3; /* Grau für inaktive Buttons */
    color: black;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.role-btn.selected {
    background-color: #4caf50; /* Grün für den aktiven Button */
    color: white;
}

.role-btn:hover {
    background-color: #b0b0b0; /* Dunklerer Grau beim Hover */
}

.button {
    background-color: #4caf50; /* Grün für den Speichern-Button */
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #45a049; /* Dunklerer Grün beim Hover */
}

.auth-key-container {
    background-color: #f9f9f9; /* Heller Hintergrund für das Feld */
    border: 1px solid #ccc; /* Rahmen um das Feld */
    border-radius: 8px; /* Abgerundete Ecken */
    padding: 10px; /* Innenabstand */
    margin: 10px 0; /* Abstand nach oben und unten */
    font-family: Arial, sans-serif; /* Schriftart */
}

.auth-key-label {
    font-weight: bold; /* Fetter Text für die Beschriftung */
}


footer {
    background-color: #343a40;
    color: dimgray;
    padding: 10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
    font-size: 14px;
}
