html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ----------------------------- */
/* HEADER */
/* ----------------------------- */

body {
        padding-top: 70px !important; 
    margin: 0;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: black;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #1f2b33;
    display: flex;
    justify-content: space-between; /* Trennt Logo und Menü */
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;
}

header img {
    height: 40px;
    width: auto;
}

/* Menü-Styling (Desktop) */
.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.menu li a {
    color: #1f2b33;
    background-color: white;
    padding: 8px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

/* --- MOBILE ANSICHT --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    .menu {
        position: fixed;
        top: 70px;
        right: -100%; /* Versteckt */
        width: 200px;
        height: auto;
        background-color: #1f2b33;
        flex-direction: column;
        padding: 20px;
        transition: 0.4s;
        border-bottom-left-radius: 10px;
    }

    .menu.active {
        right: 0; /* Erscheint bei Klick */
    }

    /* X-Animation */
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }
}

/* Desktop-Fallback (Hamburger verstecken) */
@media (min-width: 769px) {
    .hamburger { display: none; }
}



body {
    padding-top: 80px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: black;
}


.footer {
    background-color: #f8f8f8;
    padding: 60px 20px;
    margin-top: 60px;
    border-top: 1px solid #ddd;
    color: #222;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;   /* wichtig für responsive! */
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-col a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.footer-col a:hover {
    color: #000;
}

.footer-brand h3 {
    margin: 10px 0 10px;
}

.footer-brand p {
    max-width: 350px;
    line-height: 1.5;
    color: #444;
}

.footer-logo {
    width: 120px;
    margin-bottom: 5px;
}

/* -------- Responsive Footer ------ */

@media (max-width: 900px) {
    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 700px) {

    .footer-container {
        flex-direction: column;
        text-align: left; /* wie auf dem Bild */
    }

    .footer-col {
        min-width: unset;
    }

    .footer-brand p {
        max-width: 100%;
    }
}
/* ----------------------------- */
/* EXCEL PREISLISTE STYLING      */
/* ----------------------------- */

#excel-tabelle-container {
    color: white;
    margin: 40px 15% !important; 
    padding: 0;
    border-radius: 15px;
    overflow: hidden; 
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* WICHTIG: Selektiert die Tabelle und entfernt Excel-Rahmen */
#excel-tabelle-container table {
    color: white;
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    border: none !important; /* Entfernt den Standard-Rahmen aus Excel */
}

/* Header-Zeile styling */
#excel-tabelle-container tr:first-child {
    background-color: #1f2b33 !important;
    color: white !important;
    font-weight: bold;
}

/* Alle Zellen styling */
#excel-tabelle-container td {
    
    padding: 15px 20px;
    border: none !important; /* Entfernt Excel-Zellränder */
    border-bottom: 1px solid #eee !important; /* Eigener, sauberer Rand */
    color: #333;
    text-align: left;
}

/* Zebrastreifen */
#excel-tabelle-container tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    #excel-tabelle-container {
        margin: 20px 5% !important; 
    }
}

@media (max-width: 600px) {
    #excel-tabelle-container {
        margin: 15px 2% !important; 
        overflow-x: auto; 
    }
    #excel-tabelle-container td {
        padding: 10px;
        font-size: 13px;
    }
}