.category-card {
    background-color: #2c2f33;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s ease;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .category-card:hover {
    background-color: #40444b;
    transform: scale(1.03);
  }
  
  .category-name {
    font-size: 1.2rem;
    font-weight: bold;
  }
  