body {
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
    margin: 0;
}

/* ini container utama semua halaman */
.main-container {
    flex: 1;  /* otomatis dorong footer ke bawah */
}

.title {
    letter-spacing: 1px;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    padding-bottom: 5px;
}

/* Table */
.cart-table {
    border: 1px solid #ccc;
}

.cart-table th {
    background: #f8f8f8;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid #ccc;
}

.cart-table td,
.cart-table th {
    border-right: 1px solid #ddd;
}

.cart-table td:last-child,
.cart-table th:last-child {
    border-right: none;
}

/* Menu with image */
.menu-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-info img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Qty Buttons */
.qty-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: #f2f2f2;
    border: 1px solid #aaa;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.qty-number {
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    body {
        padding-top: 36%;
    }
    .menu-info img {
        width: 45px;
        height: 45px;
    }

    .qty-btn {
        padding: 1px 6px;
    }
}

/* Button Hapus */
.delete-btn {
    background: #ffdddd;
    border: 1px solid #ff9a9a;
    color: #cc0000;
    font-size: 16px;
    padding: 2px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.delete-btn:hover {
    background: #ffb3b3;
    border-color: #ff6b6b;
}

.icon-badge {
    position: relative;
    display: inline-block;
}
.icon-badge .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.icon-badge1 {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.icon-badge1 i {
    position: relative;
}

.icon-badge1 .badge1 {
    position: absolute;
    top: 2px;
    right: 74px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.icon-badge-container {
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.icon-badge-container .badge2 {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}