/* Přidáno/změněno pro layout obrázků vedle textu */
.machine-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 32px;
}
.machine-info {
    flex: 2;
    min-width: 0;
}
.machine-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-width: 180px;
}
.machine-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
@media (max-width: 900px) {
    .machine-section {
        flex-direction: column;
        align-items: stretch;
    }
    .machine-image {
        justify-content: center;
        margin-top: 20px;
    }
}
/* Stávající styly */
.stroje th {
    background-color: white;
    color: black;
    font-weight: normal;
}
