/* Footer */
footer {
    background: ##088A08;
    color: #fff;
    padding: 20px;
    text-align: center;
}
footer a {
    color: #00ff88;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}

/* Footer */
footer {
    background: #848484;
    color: #fff;
    padding: 20px;
    text-align: center;
}
footer a {
    color: #00ff88;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}
/* Grundlegende Formatierung */
body {
    font-family: Arial, sans-serif;
    background-color: #585858;
    margin: 0;
    color: #fff;
}

/* Navigation */
nav {
    background: #222;
    padding: 10px;
    text-align: center;
}
nav a {
    color: #00ff88;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px;
}
nav a:hover {
    color: #fff;
}

/* Allgemeine Einstellungen */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(13deg, #0c4615, #ca0707);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
}


.form-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.description {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 8px rgba(106, 17, 203, 0.3);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #6a11cb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5a09c4;
}

.error-message {
    color: red;
    font-size: 14px;
}


.dashboard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
}


.dashboard-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: center;
}

.dashboard-box h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

#roleMessage {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

#logoutButton {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#logoutButton:hover {
    background-color: #d32f2f;
}
.note-item textarea {
    width: 100%;
    padding: 0px;
    font-size: 14px;
    border: none;
    background-color: #aba6a6;
    resize: none; 
    outline: true;
    outline-color: #ff0000;
    height: 125px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Navigationsleiste */
.navbar {
    position: fixed; /* Fixiert die Navigationsleiste oben */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Dunkler Hintergrund */
    color: white;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Stellt sicher, dass sie über allem liegt */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.navbar-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    margin-left: 20px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar-links a:hover {
    color: #00bcd4; /* Helle Farbe beim Hover */
}

/* Footer */
.footer {
    position: fixed; /* Fixiert den Footer unten */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Überlappt Inhalte, falls nötig */
}

/* Seiteninhalte */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #333;
    padding-top: 60px; /* Platz für die fixierte Navigationsleiste */
    padding-bottom: 50px; /* Platz für den fixierten Footer */
}

main {
    padding: 20px;
}
