body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

header .logo {
    width: 150px;
}

.progress {
    height: 22px;
    background-color: #e9ecef;
    position: relative;
}

.progress-bar {
    background-color: #1C4E95;
    position: relative;
    animation: animate-positive 2s;
}

.progress .progress-bar::after {
    content: "\f00c"; /* Unicode for FontAwesome check icon */
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
    font-size: 12px;
    color: #1C4E95;
}

@-webkit-keyframes animate-positive {
    0% { width: 0%; }
}
@keyframes animate-positive {
    0% { width: 0%; }
}

.card {
    border-radius: 8px;
    border: none;
}

.card-header {
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.card-body {
    padding: 1rem 1.5rem;
}

.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.table th, .table td {
    vertical-align: middle;
}

.table td img {
    width: 80px;
    height: 80px;
}

.form-check-label {
    font-size: 0.9rem;
}

.btn {
    border-radius: 50px;
}

.fas.fa-trash-alt {
    color: #ff0000;
}

@media (max-width: 991.98px) {
    .d-flex.align-items-center {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-prices {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-prices span {
        margin-bottom: 0.5rem;
    }

    .ms-auto {
        margin-left: 0;
    }
}


