﻿.headline {
    margin-top: 15px;
    border-bottom: 1px solid #ddd;
    padding-top: 15px;
}

.card {
    background-color: var(--secondary-color);
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

i {
    font-size: 1.4rem;
}

.cart-container {
    display: flex;
    border-radius: 15px;
    margin-top: 20px;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cart-items-column {
    padding: 20px;
    border-right: 1px solid #e0e0e0;
    width: 50%;
}

.payment-column {
    padding: 20px;
    width: 100%;
}

.price-summary-column {
    width: 50%;
    padding: 20px;
    background-color: var(--secondary-color);
}

.cart-heading {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.summary-heading {
    font-size: 1.4rem;
}

.cart-item {
    margin-bottom: 15px;
    width: 90%;
    border-bottom: 2px solid #0396c2;
    padding-bottom: 1vh;
}

    .cart-item h4 {
        margin-top: 0;
        margin-bottom: 5px;
    }

.period {
    color: #666;
}

.price-section {
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-info {
    margin-top: 30px;
}

.info-text {
    color: #17a2b8;
    font-weight: bold;
}

.reservation-info {
    color: #17a2b8; /*#666;*/
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

    .summary-header h3 {
        margin: 0;
    }

.cart-icon {
}

.item-count {
    font-weight: bold;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.admin-fee {
    margin-top: 15px;
}

.fee-info {
    color: #666;
    font-size: 0.8rem;
    text-align: right;
    margin-top: 0;
}

.total-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

    .total-section h4 {
        margin: 0;
    }

.total-amount {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
}

.checkout-button {
    width: 100%;
    background-color: green;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    margin-top: 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-items-column {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        width: auto;
    }

    .price-summary-column {
        width: 100%;
    }
}

.price-amount {
    /* Position to the right */
    float: right;
    /* Ensure it doesn't wrap */
    white-space: nowrap;
}

.price-label {
    margin-bottom: 0;
}

.info-section {
    font-size: medium;
}


.terms-acceptance {
    margin-top: 20px;
    margin-bottom: 15px;
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-top: 5px;
    margin-right: 8px;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
