.slider-container {
    /*max-width: 1000px;*/
    margin: 0 auto;
    position: relative;
    /*background: #000;*/
    border-radius: 10px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    min-height: 400px !important;
    margin-top: 0;
    margin-bottom: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 50%;
}

.arrow:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
    left: 20px;
}

.arrow-next {
    right: 20px;
}

/* Dots/Buttons */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Controls Panel */
.controls {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.control-group {
    display: inline-block;
    margin-right: 20px;
}

.control-group label {
    margin-left: 5px;
    cursor: pointer;
}

button {
    padding: 5px 15px;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
}

button:hover {
    background: #f0f0f0;
}