/**
 * Стили для отображения расписания на фронтенде
 */

.excursion-schedule-wrapper {
    margin: 20px 0;
}

.excursion-schedule {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.schedule-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.excursion-schedule ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.excursion-schedule li {
    padding: 12px 15px;
    margin-bottom: 8px;
    border-left: 4px solid #ddd;
    background: #f9f9f9;
    border-radius: 4px;
    transition: all 0.2s;
}

.excursion-schedule li:hover {
    background: #f0f0f0;
    border-left-color: #2271b1;
}

.excursion-schedule li.important {
    border-left-color: #dc3232;
    background: #fff5f5;
}

.excursion-schedule li.booked {
    border-left-color: #ffb900;
    background: #fffbf0;
}

.excursion-schedule li.available {
    border-left-color: #46b450;
    background: #f0f9f0;
}

.excursion-schedule li.closed {
    border-left-color: #8c8f94;
    background: #f0f0f1;
    color: #646970;
}

.excursion-schedule.canyon-schedule p {
    margin: 15px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

.excursion-schedule.canyon-schedule ul {
    margin-left: 20px;
}

.excursion-schedule-placeholder {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.excursion-schedule-placeholder.loading {
    background: #f9f9f9;
    border-radius: 4px;
    padding: 40px;
}

.excursion-schedule-placeholder .spinner {
    text-align: center;
    color: #666;
}

.excursion-schedule-placeholder .error {
    color: #dc3232;
    text-align: center;
}

.excursion-schedule-placeholder .retry-schedule {
    margin-left: 10px;
    padding: 5px 10px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.available-tomorrow-excursions {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.available-tomorrow-excursions h2 {
    margin-top: 0;
    color: #2271b1;
}

.available-tomorrow-excursions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.available-tomorrow-excursions li {
    padding: 10px 15px;
    margin-bottom: 8px;
    border-left: 4px solid #ddd;
    background: #f9f9f9;
    border-radius: 4px;
}

.available-tomorrow-excursions li a {
    text-decoration: none;
    color: #2271b1;
    font-weight: 600;
}

.available-tomorrow-excursions li a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .excursion-schedule {
        padding: 15px;
    }
    
    .excursion-schedule li {
        padding: 10px;
        font-size: 14px;
    }
}

