.page-content{
    width: 100%;
}
main {
    width: 100%;
    display: flex;
    flex-direction: column; /* Horizontální rozložení pro nav-bar a hlavní obsah */
    flex: 1; /* Zabírá zbývající prostor */
    background: transparent;
    position: relative; /* Umožňuje absolutní pozicování v rámci hlavního obsahu */
    background: transparent; /* Zajistěte průhledné pozadí */
}

.product-container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--secondaryGlass2-color);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    animation: fadeIn 1.3s ease-in-out forwards;
    opacity: 0;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
}
.table-sizes{
    width: 90%;
    margin: 20px auto;
    overflow-x: auto; /* Přidá horizontální posuvník, pokud je potřeba */
}
.table-sizes h2{
    text-align: center;
    margin: 20px auto;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.7em;
    font-weight: 600;
}
.table-sizes .link{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
}
.table-sizes .link a{
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.table-sizes a img{
    width: 200px;
    margin: 0px auto;
    overflow-x: auto; /* Přidá horizontální posuvník, pokud je potřeba */
}
