/* Custom CSS for archive card style */
.product-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
    background-color: white; /* Set table background color to white */
    color: black; /* Set table text color to black */
}

/* Custom CSS for popup size */
/* Custom CSS for popup size */
.mfp-content {
    max-width: 80%; /* Set the maximum width of the popup */
    max-height: 80vh; /* Set the maximum height of the popup */
    width: auto !important; /* Allow the width to adjust based on content */
    height: auto !important; /* Allow the height to adjust based on content */
    overflow: auto; /* Add scrollbars if content exceeds the maximum height */
    padding: 20px; /* Add padding to the popup content */
    top: 5%;
    box-sizing: border-box; /* Include padding in the overall dimensions */
}

/* Styling for the close button */
.mfp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    padding: 5px;
    background-color: #fff;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
  }
  
/* Styling for the close button */
.mfp-close.outside-close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    padding: 5px;
    background-color: #fff;
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
  }
  
  
  
  /* Positioning for the modal container */
  .mfp-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Styling for the modal content */
  .mfp-content {
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
  }
  
  /* Styling for the overlay background */
  .mfp-bg {
    background-color: rgba(0, 0, 0, 0.8) !important;
  }
  

/* Custom CSS for category container */
.category-container {
    display: flex;
    align-items: center;
}

/* Custom CSS for category name */
.category-container h1 {
    margin-right: 10px;
}

/* Custom CSS for "View More" button */
.view-more-button {
  top: -20px;
  right: 20px;
  padding: 1px 10px;
  background-color: #076936 !important;
  color: white !important;
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 40px;
}



@media (max-width: 768px) {
    /* Adjust the positioning for smaller screens */
    .view-more-button {
        top: -10px; /* Adjust the top value as needed */
        right: 20px; /* Adjust the right value as needed */
        padding: 1px 20px;
        background-color: #076936 !important;
        color: white !important;
        border: 1px solid #fff;
        border-radius: 4px;
        cursor: pointer;
        margin-right: 40px;
    }
}