/*Customisation of fonts and colours for the booking pages*/
:root {
    --silver: #C7C9C9;
    --ecru: #C0B58E;
    --cambridge: #93A989;
    --hunter: #386939;
    --dark-green: #12341B;
}

.service-card-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.service-card {
    padding: 15px;
    background: #f1f1f1 ;
    border-radius: 6px;
    cursor: pointer;
    min-width: 220px;
    text-align: center;
    font-family: Inter, sans-serif;
    transition: background 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    background: #e1e1e1;
}

.service-card.active {
    background: linear-gradient(135deg, #b7cfab 0%, #dce8d3 50%, #c7dcbb 100%);
    color: var(--hunter);
}

.service-price {
    font-size: 14px;
    color: var(--hunter);
    font-weight: 600;
}

.service-card.active .service-price {
    color: var(--dark-green);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/*Customisation of payments*/
.payment-card {
    background: #f1f1f1;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.payment-card:hover {
    background: #e1e1e1 !important;
}

.payment-card.active {
    background: linear-gradient(135deg, #b7cfab 0%, #dce8d3 50%, #c7dcbb 100%);
    color: var(--hunter);
}

.customer-booking-modal .customer-payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.customer-booking-modal .customer-payment-card {
    width: 30%;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.customer-booking-modal .customer-payment-card:hover {
    background: #e1e1e1 !important;
}

.customer-booking-modal .customer-payment-card.active {
    background: green !important;
    color: white !important;
}

.customer-booking-modal .form-label {
    font-size: 16px;
    font-family: Inter, sans-serif;
    color: var(--hunter);
}

.customer-booking-modal .personal-details-label {
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 700;
}

.cs-topper {
    font-size: 12px;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--cambridge);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-text {
    font-size: 14px;
    line-height: 1.4em;
    color: black;
    margin-bottom: 0.5rem;
}

.form-control {
    font-size: 12px;
    font-family: Inter, sans-serif;
}

.booking-summary {
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F8F1 50%, #E5F0DF 100%);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    position: sticky;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
