
/* 🌟 Section Background */
.filter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1% 1%;
    background: linear-gradient(135deg, #eef2f3, #dde1e7);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 800px;
}

/* 🌟 Buttons Container */
.buttons {
    display: flex;
    gap: 20px;
}

/* 🌟 Modern Button Styling */
.button {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), 
                -4px -4px 10px rgba(255, 255, 255, 0.6);
}

/* 🌟 Button Hover Effect */
.button:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 123, 255, 0.3);
}

/* 🌟 Button Active Effect */
.button.active {
    background: #007bff;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
                inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}
/* 🌟 Button Active Effect 
.button:active {
    transform: scale(0.95);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
                inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}*/

/* 🌟 Responsive Design */
@media (max-width: 768px) {
    .filter-section {
        padding: 20px 10px;
    }
    
    .buttons {
        overflow:scroll;
        gap: 15px;    
        scrollbar-width: none; /* For Firefox */
        -ms-overflow-style: none; /* For Internet Explorer/Edge */
    }

    .button {
        width: 100%;
        margin: 10px;
        text-align: center;
    }

    .buttons::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }
}