.slider {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    border-radius: 5px;
}

.slide:first-child {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* MAIN GALLERY */
.plugin-image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Space between images */
    justify-content: center; /* Center images in the row */
}

.plugin-image-gallery img {
    width: 50%;
    max-width: 400px; /* Optional: Limit the maximum size */
    height: auto;
    border-radius: 5px; /* Rounded corners for aesthetics */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    transition: transform 0.3s ease; /* Hover effect */
}

.plugin-image-gallery img:hover {
    transform: scale(1.05); /* Slight zoom-in on hover */
}



/* MAIN */
#content {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

#left-content {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#right-content {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plugin-image-gallery img {
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
}
