.custom-alert {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.custom-alert .icon {
    margin-right: 10px;
    font-size: 20px;
    color: white;
}

.custom-alert.fade-out {
    opacity: 0;
}

.product-price, .service-price {
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .product-price .actual-price, .service-price .actual-price {
        text-decoration: line-through;
        color: #888;
        margin-right: 10px;
    }

    .product-price .offer-price, .service-price .offer-price {
        color: #ff0000;
        font-weight: bold;
    }

    .regular-price {
        color: #000;
        font-weight: bold;
    }

    /* Make all cards have the same height */
    .card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .card-body {
        flex-grow: 1; /* This allows the card body to take up available space */
    }

    .card-title {
        margin-bottom: auto; /* Ensures the title is positioned at the top */
    }