.slider_3d {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
}

.slider_3d img {
    transition: all 0.4s ease;
    opacity: 0.5;
    width: 100px;
    height: auto;
    cursor: pointer;
}

.slider_3d img.center {
    width: 250px;
    opacity: 1;
    border-radius: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 4px solid #111;
    background: #fff;
    position: relative;
}

.top-notch {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 23px;
    border-radius: 0 0 10px 10px;
    background: #111;
}

.bottom-notch {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.slider_3d img.side {
    width: 150px;
    opacity: 0.8;
    flex-shrink: 0;
}

.controls_3d {
    text-align: center;
    margin-top: 20px;
}

.controls_3d button {
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
}

.slider_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    margin: auto;
}

button.absolute {
    position: absolute;
    z-index: 10;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
}
