/* Grundlegende Formatierung */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* Stil für den gesamten Inhalt, um ihn in der Viewport-Höhe zu halten */
.container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header-Stile */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

/* Logo-Stil */
.header-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 70px;
}

/* Dropdown-Menü-Stil */
.dropdown {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.dropbtn {
    background-color: #008CBA;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropbtn:hover {background-color: #007B9E;}

/* Hauptbereich */
main {
    flex: 1;
    overflow: auto;
}

/* Stil für die zentrierte Login-Box */
.login-box {
    max-width: 400px;
    margin: 0 auto;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-box label,
.login-box input,
.login-box button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.login-box label {
    margin-bottom: 5px;
}

.login-box button {
    background-color: #008CBA;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background-color: #007B9E;
}

/* Sektion 1 Stile */
section {
    padding: 20px;
    background: #fff;
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
}

table, td, th {
    border: 1px solid grey;
}

th, td {
    padding: 1px 5px;
    text-align: left;
}

/* Stil für die Buttons */
button {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
}

button img {
    width: 40px;
    height: 40px;
}

button:hover {
    background-color: #007B9E;
    color: white;
}

/* Versteckte Details */
.order-details.hidden {
    display: none;
}

/* Spezielle Styles */
.hidden {
    display: none;
}

/* Farben für verschiedene Status */
.order-header td[bgcolor="red"] {
    background-color: red; /* Ersetzen Sie "red" mit der gewünschten Farbe */
}

/* Footer-Stile */
footer {
    text-align: center;
    padding: 20px 0;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer button {
    background-color: #008CBA;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 16.66666666666667%;
}

footer button:hover {
    background-color: #007B9E;
}
