body {
    margin: 0;
    padding: 0;
    background: #000;
    height: 100vh;
    overflow: hidden;
}

.slideshow-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.image-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    height: 100vh;
    width: auto;
    max-width: 100vw;
    object-fit: contain;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: white;
}

/* Remove unused styles */
.config-panel,
.config-panel input,
.config-panel button,
.config-panel button:hover {
    display: none;
}
