/*
 * Copyright (c) 2024 Biovisuals Private Limited
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of Biovisuals Private Limited.
 * You shall not disclose such Confidential Information and shall use it only
 * in accordance with the terms of the license agreement you entered into with Biovisuals Private Limited.
 */

/* category-subcategory.css */

.category, .subcategory {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FFFDF8;
  border: 1px solid #e0e0e0;
  margin: 6px 0;
  padding: 10px 6px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.category:hover, .subcategory:hover {
  background-color: #FFF4E0;
  border-color: #f2c377;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}


/* Ensure images within categories fit their containers */
.category img,
.subcategory img {
    max-width: 100%;
    height: auto;
    display: block;
}



/* Text styling */
.category, .subcategory {
    font-family: 'Arial', sans-serif;
    font-size: 13.5px;
    color: #5A3E00; /* Darker shade of saffron for text */
    font-weight: 600; /* Slightly bolder text */
}
