:root {
    --font-family: Montserrat, sans-serif;
}

.tour-booking-form {
    margin: 2rem auto;
    font-family: var(--font-family);
}

.tour-dates-select,
.people-count-input,
.booking-info,
.booking-details h4,
.booking-details p,
.no-dates {
    font-family: var(--font-family);
}

.tour-dates-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.people-count-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.people-count-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.people-count-input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.booking-info {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #0080C8;
    margin-top: 15px;
}

.booking-details h4 {
    margin-top: 0;
    color: #333;
}

.booking-details p {
    margin: 5px 0;
}

.no-dates {
    padding: 20px;
    text-align: center;
    color: #666;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px dashed #ddd;
}