body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E1E1DD;
}

/* ✅ Logo-Größe */
.logo {
    max-width: 50%;
	padding-right: 5px;
}



/* ✅ Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h2 {
    color: #333;
    text-align: center;
}

h3 {
    color: #808080;
    text-align: center;
}
/* ✅ Formulare */
form {
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


input, button {
    margin: 5px auto;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Mengenfeld und Buttons nebeneinander, zusammen 300px */
.quantity-row {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 300px;
}
.qty-input {
    width: 212px;
    text-align: center;
    margin: 0;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}
.qty-btn {
    width: 42px;
    padding: 10px 0;
    font-size: 18px;
    margin: 0;
    box-sizing: border-box;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

select {
    width: 300px;
    height: 40px;
    font-size: 16px;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* ✅ Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #007bff;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* ✅ Links */
a {
    text-decoration: none;
    color: red;
}

button a{
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: underline;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    /* 🔹 order_details.php: Tabelle untereinander anzeigen */
   

    table tr {
        margin-bottom: 10px;
        border: 1px solid #ddd;
        background: white;
        padding: 10px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    table td {
        text-align: left;
        padding: 10px;
        position: relative;
    }

    table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #007bff;
    }

    /* 🔹 daily_report.php: Tabelle untereinander */
    .daily-report-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    .daily-report-table td {
        border: none;
    }
}

/* ✅ index.php: Kacheln mit farbigem Hintergrund */
.order-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
}

.order-tile {
    background: #FBD9B1; /* 🟡 Gelber Hintergrund */
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    width: 200px;
}

.order-tile h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.order-tile p {
    margin: 5px 0;
}

.order-tile a {
    display: block;
    background: #007BFF;
    color: white;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

.order-tile a:hover {
    background: #0056b3;
}

/* ✅ Optional: Einfaches Grid-Layout für Tische */
.table-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
}

.table-tile {
    background: #f4f4f4;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.table-tile a {
    display: block;
    margin-top: 10px;
    padding: 8px;
    background: #007BFF;
    color: #f1f1f1;
    text-decoration: none;
    border-radius: 4px;
}

.table-tile a:hover {
    background: #0056b3;
}


nav {
    background-color: #f5a13e;
    padding: 15px 5px;
	
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
	
}

nav ul li {
    margin-right: 5px;
}

nav ul li a {
    color: #004438;
    text-decoration: none;
    font-size: 16px;
	padding:5px;
	border: 1px solid, #004438;
}

nav ul li a:hover {
    text-decoration: underline;
}




/* Druck-Styles */
@media print {
    /* Verstecke unnötige Elemente */
    button {
        display: none;
    }
nav {
        display: none;
    }
    /* Layout für den Druck anpassen */
    body {
        font-size: 10pt;
        color: #000;
        background-color: #fff;
		width: 80%;
		margin: 5px auto;
    }
.logo {
    max-width: 50%;
	padding-right: 5px;
	margin-bottom: 30px;
}
.datumsbereich {
	display:none;
	}
       
}
