/**
 * Categories Page Styles
 * Author: Sơn Lê
 */

.category-card {
    display: block;
    background: #1a202c;
    border: 1px solid #2d3748;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    background: #233044;
    border-color: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.2);
}

.category-card-body {
    text-align: center;
}

.category-name {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 15px;
    margin-bottom: 8px;
}

.category-count {
    font-size: 12px;
    color: #9333ea;
}

@media (max-width: 768px) {
    .category-name {
        font-size: 14px;
    }
    
    .category-count {
        font-size: 11px;
    }
    
    .category-card {
        padding: 12px;
    }
}



