/* Blogs Listing Page - Styles */

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 209, 209, 0.05);
}

.btn-primary {
    background: linear-gradient(to right, #00D1D1, #00B8B8);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 209, 209, 0.4);
}

.ghost-input {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ghost-input:focus {
    border-color: #00D1D1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 209, 209, 0.2);
}

/* Hide scrollbar for category filter on mobile */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
