/* Schedule Page Styles */
.schedule-container {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.schedule-cards {
    display: flex;
    width: 100%;
    max-width: 800px;
    height: calc(100vh - var(--header-height) - 48px);
    position: relative;
    overflow: hidden;
}

.schedule-card {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.schedule-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Navigation Dots */
.schedule-dots {
    position: absolute;
    bottom: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: #FFD500;
    transform: scale(1.2);
}

/* Back Button */
.back-button {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Swipe Indicators */
.swipe-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swipe-indicator.left {
    left: 16px;
}

.swipe-indicator.right {
    right: 16px;
}

.schedule-cards.swiping .swipe-indicator {
    opacity: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .schedule-container {
        padding: 16px;
    }

    .schedule-card {
        padding: 12px;
    }

    .schedule-card img {
        border-radius: 12px;
    }

    .back-button {
        left: 16px;
        width: 36px;
        height: 36px;
    }

    .swipe-indicator {
        width: 36px;
        height: 36px;
    }

    .swipe-indicator.left {
        left: 12px;
    }

    .swipe-indicator.right {
        right: 12px;
    }
} 