/* Shoe Sizes and Schedule Management Styles */
.shoe-size-input {
    position: relative;
}

.shoe-size-examples {
    font-size: 0.8em;
    color: #6c757d;
    margin-top: 5px;
}

/* Datepicker custom styles */
.available-date {
    background: #d4edda !important;
    color: #155724 !important;
}

.unavailable-date {
    background: #f8d7da !important;
    color: #721c24 !important;
    text-decoration: line-through;
}

.blocked-date {
    background: #fff3cd !important;
    color: #856404 !important;
    text-decoration: line-through;
}

/* Schedule table styles */
.schedule-badge {
    font-size: 0.7em;
    padding: 2px 6px;
}

.capacity-indicator {
    font-size: 0.8em;
    padding: 2px 8px;
    border-radius: 10px;
}

.capacity-low {
    background: #f8d7da;
    color: #721c24;
}

.capacity-medium {
    background: #fff3cd;
    color: #856404;
}

.capacity-high {
    background: #d4edda;
    color: #155724;
}

/* Time slot styles */
.time-slot {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #f8f9fa;
    border-color: #667eea;
}

.time-slot.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.time-slot.disabled {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Shoe size tags */
.shoe-size-tag {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    margin: 2px;
}

/* Blocked dates styling */
.blocked-date-item {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 4px;
}

/* Activity filter */
.activity-filter {
    max-width: 300px;
}

/* Schedule calendar view */
.schedule-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.schedule-day {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
}

.schedule-day.active {
    background: #d4edda;
    border-color: #c3e6cb;
}

.schedule-day.inactive {
    background: #f8f9fa;
    color: #6c757d;
}

/* Responsive schedule table */
@media (max-width: 768px) {
    .schedule-calendar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slot {
        padding: 6px 8px;
        font-size: 0.9em;
    }
}

/* Booking summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.booking-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e3e3e3;
}

.booking-detail-item:last-child {
    border-bottom: none;
}

/* Shoe size input group */
.shoe-size-input-group {
    position: relative;
}

.shoe-size-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
}

.shoe-size-suggestion {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
}

.shoe-size-suggestion:hover {
    background: #f8f9fa;
}

.shoe-size-suggestion:last-child {
    border-bottom: none;
}