
.albeu-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 10px 0; /* Zvogëlo padding nga 20px në 10px */
}
.albeu-slider {
    display: flex;
    transition: transform 0.5s ease;
}
.albeu-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0 15px;
    max-width: 100%;
}
.albeu-slide img {
    width: 100%;
    height: 300px; /* Shto këtë për të kufizuar lartësinë */
    object-fit: cover; /* Siguron që të mos deformohet imazhi */
    border-radius: 8px;
}
.albeu-slide h3 {
    font-size: 20px;
    margin: 10px 0 0;
    font-weight: bold;
}
.albeu-slide h3 a {
    color: #222;
    text-decoration: none;
}
.albeu-slider-pagination {
    text-align: center;
    margin-top: 10px;
}
.albeu-slider-pagination span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.albeu-slider-pagination .active {
    background: #333;
}
