html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ----------------------------- */
/* HEADER */
/* ----------------------------- */

header {
    position: fixed;
    background-color: #1f2b33;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.menu li a {
    background-color: white;
    padding: 7px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu li a:hover {
    color: white;
    background-color: black;
}

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 {
    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 {
    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;
    }
}