/* BODY */
body {
    background-image: url('img/bg.jpg');
    /* Volle Höhe */
    height: 100%;
    /* Center und Scale das Bild */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Fix das Bild */
    background-attachment: fixed;
    margin: 0;
    padding-top: 0px !important;
}

/* Hintergrundbild unscharf machen */
body::after {
    content: '';
    background-image: url('img/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(8px);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* FOOTER */
.footer_div {
    background-color: #3d9eff;
    padding: 5px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0px;
    max-height: 30px;
}

/* LOGIN */
.login-box {
    /* Durchsichtige Box */
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.containerlogin {
    min-height: 100vh; /* Verwende min-height statt height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stellt sicher, dass der Container auch bei Inhalt wächst */
}

/* MAIN CONTENT */
.maincontent{
    margin-top: 50px;
    padding: 30px;
    padding-bottom: 40px;;
}

/* MENU */
.nav-link {
    padding-left: 5px;
    padding-right: 5px;
}
.dropdown-menu {
    min-width: 200px;
}

#navbarse {
    border-bottom: 1px solid #000; /* Erstellt einen dünnen, schwarzen Rahmen unten */
    border-radius: 0px !important;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 15px; /* Breite der Scrollleiste */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Hintergrundfarbe der Scrollleisten-Spur */
}

::-webkit-scrollbar-thumb {
    background-color: #888; /* Farbe des Scrollleisten-Thumb */
    border-radius: 6px; /* Abgerundete Ecken des Scrollleisten-Thumb */
    border: 3px solid #f1f1f1; /* Rand um den Scrollleisten-Thumb */
}

.benutzerbutton{
    margin-left: auto;
    margin-right: 2rem;
    display: flex;
}

.navbar img{
    margin-left: 2rem !important;
}

/* KUNDENMENÜ */
.custom-box {
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    margin-bottom: 20px;
}
.description-box {
    width: 100%;
    margin: 20px 0;
}
.tasks-container {
    display: flex;
    justify-content: space-between;
}
.task-box {
    width: 48%;
}