.type-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.type-btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.type-btn:hover {
    color:white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
    filter: brightness(1.1);
}
 #slider {
    width: 100%;
    /* full width */
    height: 250px;
    /* adjust height as needed */
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    /* rounded corners */ 
    /* nice shadow */
    background: var(--app-color2);
}

#slider img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    /* start outside the view */
    border-radius: 20px;
    object-fit: cover;
    /* maintain image ratio */
    transition: all 1s ease-in-out;
    /* smooth sliding */
}

#slider img.active {
    left: 0;
    /* visible image */
}

#slider img.prev {
    left: -100%;
    /* outgoing image slides left */
}
/* Mobile screens */
@media (max-width: 768px) {
  #slider { 
    height: 120px; 
}
}