.cart-wrapper {
    width: 100%;
    padding: 20px;
    background-color: #dcdcdc; /* ще темніший фон */
    border: 1px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.08);
    margin-left: 0;
}

.cart-wrapper h1 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #007bff;
}

.cart-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f4f4f4; /* фон самої таблиці */
}

.cart-wrapper thead {
    background-color: #cccccc; /* темний заголовок */
}

.cart-wrapper th,
.cart-wrapper td {
    padding: 10px;
    border: 2px solid #bbb; /* товстіші границі */
    text-align: left;
}

.cart-wrapper td:last-child,
.cart-wrapper th:last-child {
    text-align: center;
}

.cart-wrapper button,
.cart-wrapper button.view-items {
    padding: 6px 12px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.cart-wrapper button:hover,
.cart-wrapper button.view-items:hover {
    background-color: #0056b3;
}

#items-container {
    margin-top: 20px;
}
