        body {
            background-color: #0B1215;
            color: #e0e0e0;
            font-family: "Arvo", serif;
        }

        .container {
            /* background-color: #141d21; */
            border-radius: 10px;
            padding: 20px;
        }

        h1 {
            color: #ffffff;
        }

        .cart-item {
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

        .cart-item img {
            width: 100px;
            height: auto;
        }

        .cart-item-details {
            list-style: none;
            padding: 0;
        }

        .cart-item-details li {
            display: flex;
            justify-content: space-between;
            color: #bbbbbb;
            padding: 5px;
        }

        .add-on-product {
            font-size: 0.9rem;
            color: #999;
            margin-left: 20px;
        }

        .card {
            background-color: #1b282e;
            border: none;
        }

        .card-body {
            color: #e0e0e0;
        }

        .btn-primary {
            background-color: #6200ee;
            border-color: #6200ee;
        }

        .btn-primary:hover {
            background-color: #3700b3;
            border-color: #3700b3;
        }

        input.form-control {
            background-color: #333;
            color: #e0e0e0;
            border: 1px solid #444;
        }

        input.form-control:focus {
            background-color: #444;
            color: #ffffff;
        }

        .qty {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty i {
            cursor: pointer;
        }

        .qty .mx-2 {
            margin: 0 10px;
        }