/* Slider Styles */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px; /* Increased padding for controls */
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.program-page {
    flex: 0 0 100%;
    width: 100%;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px; /* Moved down */
    right: 0;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    width: 100%;
    padding: 0;
    z-index: 10;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-arrow:focus {
    outline: none;
} 