.swiper {
    width: 100%;
    cursor: pointer;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 5px #a9a9a9;
}

.custom-indicators {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

.custom-indicators button {
    flex: 1 1 auto;
    font-size: 1rem;
    padding: 0.4rem 0.5rem;
    font-size: 1.2rem;
    border: 1px solid var(--bs-primary);
    background-color: white;
    color: var(--bs-primary);
    white-space: nowrap;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.custom-indicators button.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
}

/* Make buttons smaller on small screens */
@media (max-width: 576px) {
    .custom-indicators button {
        font-size: 0.7rem;
        padding: 0.25rem 0.3rem;
    }
}