.booking-card {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    border: none;
    overflow: hidden;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

.booking-header {
    background-color: #0f2a43;
    color: white;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.booking-content {
    /** @note add padding-left + padding-right 4rem **/
    padding: 1rem 6rem;
    font-size: 1rem;
    color: #333;

    position: relative; /* nodig voor stacking context */
    background-color: #fff;
    background-image: linear-gradient(rgba(229, 229, 229, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 229, 229, 0.8) 1px, transparent 1px);
    background-size: 18px 18px;
    overflow: hidden;
}

.booking-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.7) 25%,
    rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 0;
}

/* 3) Content altijd boven de fade */
.booking-content > * {
    position: relative;
    z-index: 1;
}


.package-card {
    border: 1px solid #2cb1bc;
    border-radius: 0.5rem;
}

.card-sub-text {
    font-size: 0.8rem;
}

.card-price-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 400;
}
