.order-summary {
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 550px;
    height: 420px;
    height: fit-content;
    color: white;
    background-color: #19192a;
    width: max-content;
    border-collapse: collapse;
    box-shadow: 1px 1px 6px lightslategray;
    
}
@media (max-width:1000px){
    .order-summary{
        width: auto;
        height: fit-content;
    }
}



table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
     /* Zarovná obsah buněk na střed */
    vertical-align: middle; /* Zajistí vertikální zarovnání obsahu */
    padding: 10px;
}

table th {
    background-color: #333;
    color: white;
    font-weight: bold;
}

table td img {
    width: 50px;
    height: 50px;
    margin-right: 10px; /* Odstup obrázku od textu */
    vertical-align: middle;
}

table td {
 /* Zajistí rovnoměrné rozložení mezi textem a cenou */
    padding: 10px;
}

table tr {
    border-bottom: 1px solid #ddd;
}

table tr:last-child {
    border-bottom: none;
}

table .total-row td {
    font-weight: bold;
    font-size: 1.2em;
}


#completeOrder {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#completeOrder:hover {
    background-color: #45a049;
}
@media (max-width:380px) {
    .order-summary{
        width: auto;
    }
    
}
