* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000; 
    color: #fff; 
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    background-color: #1a1a1a;
    padding: 0 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}



.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 40px;
    background-color: #000000;
    position: fixed;
    top: 30px; 
    width: 100%;
    z-index: 999;
}

/* Einheitliches Styling für Navbar-Icons */
.navbar a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: lightgrey; /* Farbe der Icons und Texte */
    font-size: 1.2rem; /* Schriftgröße */
    padding: 10px 15px; /* Abstand */
}

.navbar a i {
    margin-right: 10px; /* Abstand zwischen Icon und Text */
}

.navbar a:hover {
    color: #ffffff; /* Farbe beim Hover */
}

/* Header-Icons */
.menu-icon, .chat-icon {
    color: lightgrey; /* Einheitliche Farbe */
    font-size: 1.5rem; /* Größe der Icons */
    cursor: pointer;
}

.menu-icon:hover, .chat-icon:hover {
    color: #ffffff; /* Hover-Farbe */
}

header .logo {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: gold;
}


/* Content Styling */
.content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    margin-top: 60px; 
    position: relative; 
    text-align: center;
}

/* Slide-out-Menü */
#side-menu {
    position: fixed;
    top: 0;
    left: -75%; 
    width: 75%; 
    height: 100%;
    background-color: #333; 
    z-index: 1100;
    transition: left 0.3s ease; 
    padding: 20px;
    display: flex;
    flex-direction: column;
}

#side-menu a {
    color: #fff; 
    text-decoration: none;
    font-size: 20px;
    padding: 20px 0;
}

#side-menu a:hover {
    color: #ff6347;
}


#side-menu.open {
    left: 0; 
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
}
h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    color: #ccc; /* Lighter gray text */
}

/* Forms */
form {
    width: 100%;
    max-width: 350px; /* Max width for the form */
    margin: 0 auto; /* Center the form */
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    max-width: 350px; /* Max width for input fields */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #fff;
}

button {
    width: 100%;
    max-width: 350px; /* Max width for the button */
    padding: 10px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #333; /* Slightly lighter background on hover */
}

/* Links */
a {
    color: #ccc;
    text-decoration: none;
}

a:hover {
    color: #ff6347; /* Orange hover color */
}

a i {
    margin-right: 20px; 
}


/* Additional Link Areas */
.login-link {
    margin-top: 20px;
}

.footer-link {
    margin-top: 30px;
}

#menu-image {
    display: block;
    width: 180px;
    height: 180px;
    margin: 10px auto; /* Zentriert das Bild horizontal */
}
