/**
 * Client styles for Gym Schedule System
 */

.gym-client-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gym-client-header {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gym-client-header h1 {
    margin: 0 0 10px 0;
    color: white;
}

.gym-client-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.gym-client-calendar-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gym-calendar-header {
    margin-bottom: 20px;
}

#client-calendar {
    min-height: 500px;
}

.gym-client-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #11998e;
}

.info-card ol, .info-card ul {
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.fc-event.available {
    cursor: pointer;
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.fc-event.booked {
    cursor: pointer;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.fc-event.full {
    cursor: not-allowed;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    opacity: 0.6;
}

.booking-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #f8f9fa;
}

.booking-item.strong {
    border-left: 4px solid #11998e;
}

.booking-item h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.booking-item p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.booking-item .booking-actions {
    margin-top: 10px;
}

.booking-item button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.booking-item button:hover {
    background: #c82333;
}

@media (max-width: 768px) {
    .gym-client-content {
        grid-template-columns: 1fr;
    }
}
