.ttrs-booking-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filters */
.ttrs-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ttrs-filter-group {
    flex: 1;
}

.ttrs-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.ttrs-filter-group input,
.ttrs-filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.join-tee-time-btn {
    cursor: pointer;
}
/* Booking Grid */
.ttrs-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Booking Card */
.ttrs-booking-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.ttrs-booking-card:hover {
    transform: translateY(-2px);
}

.ttrs-booking-header {
    padding: 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.ttrs-booking-date {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.ttrs-booking-time {
    font-size: 14px;
    color: #666;
}

.ttrs-booking-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.ttrs-booking-status.pending {
    background-color: #fff3cd;
    color: #856404;
}

.ttrs-booking-status.confirmed {
    background-color: #d4edda;
    color: #155724;
}

.ttrs-booking-status.cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.ttrs-booking-players {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.ttrs-booking-players h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.ttrs-booking-players ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ttrs-booking-players li {
    font-size: 14px;
    color: #333;
    padding: 4px 0;
}

.ttrs-booking-notes {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.ttrs-booking-notes h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.ttrs-booking-notes p {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.ttrs-booking-actions {
    padding: 15px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.ttrs-join-btn,
.ttrs-cancel-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.ttrs-join-btn {
    font-weight: 600;
    background-color: #007bff;
    color: white;
}

.ttrs-join-btn:hover {
    background-color: #025fc3;
}

.ttrs-cancel-btn {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.ttrs-cancel-btn:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Pagination */
.ttrs-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.ttrs-pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ttrs-pagination button:hover:not(:disabled) {
    background-color: #f8f9fa;
    border-color: #ddd;
}

.ttrs-pagination button.active {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.ttrs-pagination button:disabled {
    background-color: #f8f9fa;
    color: #aaa;
    cursor: not-allowed;
}

/* Empty State */
.ttrs-no-bookings {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #666;
}

/* Alerts */
.ttrs-alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.ttrs-alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ttrs-alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}



/* Responsive Design */
@media (max-width: 768px) {
    .ttrs-filters {
        flex-direction: column;
        gap: 15px;
    }

    .ttrs-booking-grid {
        grid-template-columns: 1fr;
    }

    .ttrs-pagination {
        flex-wrap: wrap;
    }
} 