.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 12px;
}

#slider-view {
    text-align: center;
}

#main-slider-img {
    max-width: 100%;
    height: 400px;
    object-fit: contain; /* Shows the full image without cropping */
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#img-caption {
    margin-top: 10px;
    font-family: sans-serif;
    color: #555;
}

button {
    background: #333;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

button:hover {
    background: #555;
}