/* Kontainer utama slider */
.ms-container-widget {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Wrapper untuk slide */
.ms-wrapper-widget {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Setiap slide */
.ms-slide-widget {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ms-slide-widget img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Teks di tengah gambar */
.slide-text-widget {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    width: 80%;
    box-sizing: border-box;
}

/* Navigasi */
.ms-nav-widget {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.ms-nav-widget button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ms-nav-widget button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}