body {
    font-family: Arial, sans-serif;
    padding-left: 10px; /* Setzt das linke Padding für den gesamten Body-Inhalt */
    padding-right: 10px; /* Setzt das linke Padding für den gesamten Body-Inhalt */

    background-position: center top;
    background-size: 100% auto;
    background-color: #ffffff;
    background-repeat: no-repeat;
}
/* Auf Desktop-Geräten */
@media screen and (min-width: 768px) {
    body {
        padding-left: 30px;
        padding-right: 30px;
        overflow-x: hidden;
    }
}



/* Standardmäßig wird das Desktop-Bild angezeigt */
    .image-desktop {
      display: block;
    }
    .image-mobile {
      display: none;
    }

    /* Für Bildschirme kleiner als 768px wird das mobile Bild angezeigt */
    @media (max-width: 768px) {
      .image-desktop {
        display: none;
      }
      .image-mobile {
        display: block;
      }
    }






/* Navigation Styles */

.navigation,
.sub-navigation {
    list-style: none;
    padding: 0;
}

.navigation {
    background: #f3a423;
    margin: 0;
    display: none; /* Menü standardmäßig auf mobilen Geräten verstecken */
    flex-direction: column; /* Menüpunkte auf mobilen Geräten vertikal anzeigen */
    align-items: center; /* Vertically centers the list items */
}

.navigation > li {
    position: relative;
    display: block; /* Menüpunkte standardmäßig blockieren */
}

.navigation a,
.sub-navigation a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
}

.navigation a:hover,
.sub-navigation a:hover {
    background-color: #555, 0.3;
    color: white;
}

.sub-navigation {
    position: absolute;
    background-color: #d8d8d8, 0.3;
    display: none; /* Sub-Navigation standardmäßig verstecken */
}

.navigation > li:hover .sub-navigation {
    display: block; /* Sub-Navigation beim Darüberfahren mit der Maus anzeigen */
}

.menu-btn {
    display: block; /* Menü-Button standardmäßig auf mobilen Geräten anzeigen */
    color: black;
    background: #f3a423; /* Transparenter Hintergrund */
    border: 1px solid black; /* Umrandung von 1px in Schwarz */
    padding: 6px 11px; /* Ein wenig Polsterung für bessere Ästhetik */
    font-size: 120%; /* Schrift 20% größer */
    cursor: pointer; /* Cursor-Änderung beim Darüberfahren */
    transition: background-color 0.3s ease; /* Glatter Übergang für Hover-Effekt */
}

.menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Ein leichter Hover-Effekt, um die Benutzerinteraktion zu signalisieren */
}


/* Auf Desktop-Geräten */
@media screen and (min-width: 768px) {
    .navigation {
        background: #f3a423;
        display: flex;
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 30px;
        flex-direction: row; /* Menüpunkte horizontal anordnen */
    }

    .menu-btn {
        display: none; /* Menü-Button verstecken */
    }
}


.footer-navigation {
    list-style: none;  /* Entfernt die Bulletpoints */
    padding: 0;
    display: flex;     /* Setzt die Elemente standardmäßig nebeneinander */
    flex-direction: column;  /* Standardmäßig untereinander */
    align-items: center;
}

.footer-navigation li {
    margin: 5px 0;     /* Vertikaler Abstand zwischen den Elementen für Mobilgeräte */
}

.footer-navigation a {
    text-decoration: none;
    color: black;     /* Setzt die Linkfarbe auf Schwarz */
    padding: 5px 10px;
}

.footer-navigation a:hover {
    color: #f3a423;  /* Ein Hover-Effekt, falls gewünscht */
}

/* Für Desktop-Geräte */
@media screen and (min-width: 768px) {
    .footer-navigation {
        flex-direction: row; /* Setzt die Elemente nebeneinander für Desktop-Geräte */
        align-items: center;
    }
    .footer-navigation li {
        margin: 0 10px;  /* Horizontaler Abstand zwischen den Elementen für Desktop */
        align-items: center;
    }
}









/* Produktcontainer Styles */

.container {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .image {
            width: 350px; /* oder eine andere feste Größe */
            height: 350px;
            margin-right: 40px; /* Abstand zwischen Bild und Text */
        }
        .text {
            flex-grow: 1;
        }
        .price {
            font-size: 1.2em; /* etwas größer */
            font-weight: bold;
        }
        .button {
            display: inline-block;
            padding: 10px 15px;
            margin: 5px;
            background-color: #007bff;
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
        }
        .button:hover {
            background-color: #0056b3;
        }

        /* Media Query für Mobilgeräte */
        @media (max-width: 600px) {
            .container {
                flex-direction: column;
                padding: 10px; /* Etwas Abstand im Container */
            }
            .image {
                width: 100%; /* oder eine andere feste Größe */
                height: 70%;
                margin-right: 0;
                margin-bottom: 20px;
            }
        }




/* Last Action Styles */
.kommen-zurueck {
    background-color: lightgreen;
}

.gehen {
    background-color: red;
}

.pause {
    background-color: yellow;
}



/* Form Table Styles */
.form-table {
    width: 50%;
    margin-left: 0%;
    border-collapse: collapse;
}

.form-table tr td:first-child {
    padding: 10px;
    vertical-align: top;
    width: 40%; /* Linke Spalte 40% */
    border: 1px solid #ffffff;
}

.form-table tr td:last-child {
    padding: 10px;
    vertical-align: top;
    width: 60%; /* Rechte Spalte 60% */
    border: 1px solid #ffffff;
}

.form-table td label {
    display: inline-block;
    text-align: left;
    margin-right: 0px;
}

.form-table td input,
.form-table td select {
    width: 100%; 
}

/* table-inventory Styles */

.table-inventory {
    width: 95%;
    margin-left: 0%;
    border-collapse: collapse;
}

.table-inventory th, .table-inventory td {
    border: 1px solid black !important;
    padding: 8px !important;
    text-align: left !important;
}

.table-inventory th {
    background-color: #f2f2f2 !important;
}

/* form-table-inventory Styles */


.form-table-inventory {
    width: 60%;
    margin-left: 0%;
    border-collapse: collapse;
}

.form-table-inventory tr td:first-child {
    padding: 10px;
    vertical-align: top;
    width: 40%; /* Linke Spalte 40% */
    border: 1px solid #ffffff;
}

.form-table-inventory tr td:last-child {
    padding: 10px;
    vertical-align: top;
    width: 60%; /* Rechte Spalte 60% */
    border: 1px solid #ffffff;
}

.form-table-inventory td label {
    display: inline-block;
    text-align: left;
    margin-right: 0px;
}

.form-table-inventory td input,
.form-table-inventory td select {
    width: 100%; 
}


/* Andere Stile unverändert */
.center {
    text-align: center;
}

.highlight {
    background-color: yellow;
    padding: 5px;
}

.bold-submit {
    font-weight: bold;
}

/* WorktimesTable Styles */

.worktimesTable {
    width: 50% !important;
    border-collapse: collapse !important;
}

.worktimesTable th, .worktimesTable td {
    border: 1px solid black !important;
    padding: 8px !important;
    text-align: left !important;
}

.worktimesTable th {
    background-color: #f2f2f2 !important;
}

.worktimesTable th:last-child,
.worktimesTable td:last-child {
    width: 30%;
}

.narrowworktimes {
    width: 30%;
    border-collapse: collapse;
}

.narrowworktimes th, .narrowworktimes td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

.narrowworktimes th {
    background-color: #f2f2f2;
}

.mediumworktimes {
    width: 50%;
    border-collapse: collapse;
}

.mediumworktimes th, .mediumworktimes td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

.mediumworktimes th {
    background-color: #f2f2f2;
}

/* Message Styles */

    .message {
        transition: opacity 0.5s linear; /* Animation für das sanfte Ausblenden */
        opacity: 1;
    }
    .fade-out {
        opacity: 0;
    }




/* Button Styles */






/* Umgebender Container */
.container_buttons {
    display: flex;
    justify-content: start; /* startet am linken Rand */
}

/* Die Input-Elemente */
.side-input {
    margin-right: 20px; 
}

.side-input:last-child {
    margin-right: 0; 
}


.button-mm {
            display: inline-block;
            font-weight: bold;
            border: none;
            padding: 10px 15px;
            margin: 0px;
            background-color: #f3a423;
            color: black;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
        }
.button-mm:hover {
    color: white;
}


.info {
            margin-bottom: 20px;
            text-align: center;
        }
        .info p {
            margin: 5px 0;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        form input, form textarea {
            margin-bottom: 15px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        form button {
            padding: 10px;
            font-size: 16px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        form button:hover {
            background-color: #45a049;
        }
        .message {
            text-align: center;
            margin: 15px 0;
            color: green;
        }
        .error {
            text-align: center;
            margin: 15px 0;
            color: red;
        }


.kontakt-container {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .kontakt-container img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
        }
        .kontakt-details {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .kontakt-details h1 {
            margin: 0 0 10px 0;
            font-size: 36px;
            color: #333;
        }
        .kontakt-details p {
            margin: 5px 0;
            font-size: 24px;
            color: #333;
        }
        .kontakt-details a {
            color: #f3a423;
            text-decoration: none;
            margin-top: 10px;
            font-size: 24px;
        }
        .kontakt-details a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) { /* ÄNDERUNG: Medienabfrage für mobile Geräte */
            .kontakt-container {
                flex-direction: column; /* ÄNDERUNG: Elemente untereinander anordnen */
                align-items: center; /* Zentrieren der Inhalte */
            }
            .kontakt-container img {
                width: 80%; /* ÄNDERUNG: Bildbreite an Bildschirmbreite anpassen */
                height: auto; /* ÄNDERUNG: Bildhöhe proportional anpassen */
            }
            .kontakt-details h1 {
            margin: 0 0 10px 0;
            font-size: 24px;
            color: #333;
        }
        .kontakt-details p {
            margin: 5px 0;
            font-size: 20px;
            color: #333;
        }
        .kontakt-details a {
            color: #f3a423;
            text-decoration: none;
            margin-top: 10px;
            font-size: 20px;
        }
        }
