/* Teaser Examples Navigation Styles */
.navigation-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 1.2rem;
    color: #555;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.prev-arrow {
    margin-left: 10px;
}

.next-arrow {
    margin-right: 10px;
}

/* Video Label Styling */
.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
    z-index: 10;
}

.teaser-examples {
    position: relative;
    width: 100%;
}

.teaser-example {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.teaser-example.active {
    display: block;
    opacity: 1;
}

/* Material Controls fade animation */
.material-controls-container {
    transition: all 0.3s ease;
    max-height: 100px;
    overflow: hidden;
    opacity: 1;
}

.material-controls-container.hidden {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0 !important;
}