.btn {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    color: #333;
    width: 34px;
    height: 34px;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    border-radius: 20px;
    /* subtle rounding for hit area */
    cursor: pointer;
    transition: background-color .12s ease, color .12s ease, transform .06s ease;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #fff;
}

/* left-aligned text */
.cart-item-name {
    color: var(--primary-500);
    flex-grow: 1;
    text-align: left;
    font-size: 1.5rem;
    align-content: center;
    text-decoration: none;
    /* pushes X to the right */
}

.cart-item-details {
    display: flex;
    flex-grow: 1;
}

.btn:hover {
    background-color: var(--primary-500);
}

.remove-btn {
    background-color: #ff4d4d;
}

.remove-btn:hover {
    background-color: #e60000;
}

.clear-btn {
    background-color: #6c757d;
}

.clear-btn:hover {
    background-color: #4a4e52;
}
#booking-form {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}
#booking-form .row-label {
    margin-bottom: -1rem;
    font-weight: bold;
    color: var(--primary-600)
}
#booking-form.show {
    max-height: 50rem;
    /* large enough to fit content */
    opacity: 1;
}
.form-container .faq-question {
    color: var(--primary-500);
    align-items: center;
    font-size: 1.25rem;
}