* {
}
body {
    background-color: #ffffff;
}

/* Carousel media and progress styles moved from inline markup */
.carousel-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-video {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-progress-overlay {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 42px; /* moved down 30px */
    display: flex;
    align-items: center;
    pointer-events: none;
}

.carousel-progress-bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.25);
    border-radius: 3px;
    overflow: hidden;
}

.carousel-progress-fill {
    height: 100%;
    background: #ffffffd9;
    transition: width 0.25s linear;
}

.carousel-progress-seconds {
    margin-left: 8px;
    color: white;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* Ensure Vuetify v-img content fills the carousel wrapper */
.carousel-media-wrapper .v-image,
.carousel-media-wrapper .v-img,
.carousel-media-wrapper img,
.carousel-media-wrapper .carousel-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-btn {
  opacity: 0.2
}
.carousel-btn:hover {
  opacity: 1.0
}

/* Force carousel to fill height */
.v-carousel {
  height: 100% !important;
}

.v-carousel .v-window__container,
.v-carousel .v-window-item {
  height: 100% !important;
}

.v-carousel-item {
  height: 100% !important;
}
