* {
    font-family: Arial, sans-serif;
}

.booking-button {
    background: #FC5730;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-button:hover {
    background: #1e5bff;
}

.booking-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
}

.booking-modal-content {
    background: white;
    padding: 30px;
    width: 90%;
    max-width: 550px;
    border-radius: 5px;
    position: relative;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal-content h2 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    margin-bottom: 20px;
    color: #333;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #333;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e5bff;
}

.submit-button {
    background: #FC5730;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #1e5bff;
}

#booking-message {
    margin-top: 15px;
    font-size: 14px;
}

#calendar-view {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-header button {
    background: #FC5730;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.calendar-header button:hover {
    background: #1e5bff;
}

.calendar-month {
    font-weight: 600;
    font-size: 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 0;
    color: #666;
}

.calendar-day {
    text-align: center;
    padding: 10px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
}

.calendar-day:hover {
    background: #f0f0f0;
}

.calendar-day.empty {
    border: none;
    cursor: default;
}

.calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
    background: #fafafa;
}

.calendar-day.booked {
    background: #ff4444;
    color: white;
    cursor: not-allowed;
    font-weight: 600;
}

.calendar-day.selected {
    background: #1e5bff;
    color: white;
    font-weight: 600;
}

.calendar-day.in-range {
    background: #d0e0ff;
    color: #333;
}

.calendar-legend {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.legend-color.booked {
    background: #ff4444;
}

.legend-color.available {
    background: white;
    border: 1px solid #e0e0e0;
}

.calendar-instructions {
    margin-top: 15px;
    padding: 12px;
    background: #f0f8ff;
    border-left: 3px solid #1e5bff;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.calendar-instructions strong {
    color: #1e5bff;
}

.clear-button {
    background: #666;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.clear-button:hover {
    background: #444;
}