/* Turtle Booking Styles */
#turtle-booking-wrapper {
    max-width: 900px;
    margin: 2em auto;
}

#step-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.step-nav-item {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    color: #aaa;
    font-weight: bold;
    position: relative;
}

.step-nav-item.active {
    color: #007aff;
}

.step-nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background-color: #ddd;
}

#turtle-booking-form {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px;
}

.booking-step { display: none; }
.booking-step.active { display: block; }
.step-content { margin-bottom: 20px; }
#booking-step-1 .step-content { display: flex; }
#calendar-container { flex: 0 0 55%; padding-right: 20px; border-right: 1px solid #eee; }
#time-slots-container { flex: 1; padding-left: 20px; }

#time-slots, #courts {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

#time-slots li, #courts li {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

#time-slots li.selected, #courts li.selected {
    background-color: #007aff;
    color: #fff;
    border-color: #007aff;
}

#booking-summary { padding: 15px; background-color: #f9f9f9; border-radius: 4px; }
.step-actions { display: flex; justify-content: space-between; margin-top: 20px; }
.step-actions button { padding: 10px 20px; border: none; border-radius: 4px; background: #007aff; color: #fff; cursor: pointer; font-size: 16px; }
.step-actions button.prev-step { background: #6c757d; }
.step-actions button:disabled { background: #ccc; cursor: not-allowed; }

#booking-details-form label { display: block; margin-bottom: 5px; font-size: 14px; color: #555; }
#booking-details-form input[type="text"],
#booking-details-form input[type="tel"],
#booking-details-form input[type="email"],
#booking-details-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
#booking-details-form button { width: 100%; padding: 12px; border: none; border-radius: 4px; background: #007aff; color: #fff; cursor: pointer; font-size: 16px; margin-top: 10px; }

/* My Bookings Page */
.my-bookings-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.my-bookings-table th, .my-bookings-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.my-bookings-table th {
    background-color: #f9f9f9;
    font-weight: bold;
}
.my-bookings-table tbody tr:hover {
    background-color: #f9f9f9;
}
.my-bookings-table .button-sm {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.my-bookings-table .cancel-booking {
    background-color: transparent;
    color: #dc3545;
    border-color: #dc3545;
}
.my-bookings-table .cancel-booking:hover {
    background-color: #dc3545;
    color: #fff;
}

