* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}



.container_contact h1,
.table-wrapper h1{
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2e4d32;
    padding: 30px;
    position: relative;
}


.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    background: transparent;
    border: none;
    padding: 10px;
    margin: 20px;
}

.logo {
    width: 150px;
    height: auto;
    cursor: pointer;
    margin: 20px;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 20px;
}

.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    padding: 15px;
}

li a:hover {
    background: white;
    transition: 0.6s;
}

.navbar a:hover {
    color: black;
}


.content {
    width: 100%;
    position: absolute;
    color: white;
    top: 45%;
    transform: translateY(-50%);
    text-align: center;

}


.container_contact {
    width: 100%;
    padding: 30px;
    text-align: left;
    background-color:#2e4d32;

}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info {
    max-width: 500px;
    text-align: left;
    color: white;
}

.contact-info .logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.map-container {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
    height: 400px;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px;
    color: #2e4d32;

}


.styled-table {
    width: 100%;
    border-collapse: collapse;
    padding: 30px 0;
    font-size: 18px;
    color: black;
    border-radius: 100px;
   
    
}

.styled-table thead {
    background-color: #2e4d32;
    color: white;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;;
}

.styled-table tbody tr:nth-child(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:hover {
    background-color: #e4ebe0;
}

a {
    color: #2e4d32;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#footer {
    background-color: white;
    color: black;
    text-align: center;
    padding-top: 40px;
}



.hamburger.active {
    background: #2e4d32;
}

/* ✅ Responzivní tabulka - CARD layout pro mobil */
@media screen and (max-width: 768px) {
    
    
    .styled-table thead {
        display: none;
    }

    .styled-table,
    .styled-table tbody {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .styled-table tr {
        display: block;
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        
        margin: 10px;
    }

    .styled-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 16px;
        border: none;
        border-bottom: 1px solid #eee;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .styled-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
        margin-bottom: 6px;
        color: #2e4d32;
    }

    .styled-table td:last-child {
        border-bottom: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2e4d32;
        z-index: 20;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .hamburger {
        display: block;
    }
}