   body {
       /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
       /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
       margin: 0;

       font-family: "Poppins", sans-serif !important;
       background-color: #f7f7f7;
       /* padding: 20px; */
   }

   .bg-secondary {
       background-color: #c0c0c0 !important;
   }
.px-2.legend-color.not-available {
  background: #c0c0c0;
}
   .main-container {
       max-width: 1200px;
       margin: 0 auto;
       background: white;
       border-radius: 15px;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
       overflow: hidden;

   }

   .header {
       background: linear-gradient(to right, #70cfeb 0%, #3F8FEB 100%);
       color: white;
       padding: 20px;
       text-align: center;
       position: relative;
   }

   .header::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
   }

   .header h1 {
       margin: 0;
       font-size: 2.5rem;
       font-weight: 600;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
       position: relative;
       color: #fff;
       z-index: 1;
   }

   .info-section {
       padding: 30px;
       background: #f8f9fa;
       border-bottom: 3px solid #e9ecef;
   }

   .block {
       padding: 30px;
       background: #f8f9fa;
   }

   .info-text {
       font-size: 1.1rem;
       line-height: 1.6;
       margin-bottom: 20px;
       color: #495057;
   }

   .legend {
       display: flex;
       justify-content: center;
       gap: 30px;
       margin: 20px 0;
       flex-wrap: wrap;
   }

   .legend-item {
       display: flex;
       align-items: center;
       gap: 8px;
       padding: 8px 15px;
       background: white;
       border-radius: 25px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease;
   }

   .legend-item:hover {
       transform: translateY(-2px);
   }

   .legend-color {
       width: 20px;
       height: 20px;
       border-radius: 3px;
       border: 1px solid #ddd;
   }

   .peak {
       background: #2E7D32;
   }

   .available {
       background: #66BB6A;
   }

   .limited {
       background: #81C784;
   }

   .not-available {
       background: #E3F2FD;
   }

   .chart-container {
       padding: 30px;
       background: white;
   }

   .chart-title {
       text-align: center;
       margin-bottom: 30px;
       padding: 15px;
       background: linear-gradient(135deg, #FFF9C4, #F0F4C3);
       border-radius: 10px;
       border: 2px solid #CDDC39;
   }

   .chart-title h2 {
       margin: 0;
       color: #33691E;
       font-weight: 600;
   }

   .chart-title .website {
       color: #689F38;
       font-size: 0.9rem;
       margin-top: 5px;
   }

   .chart-grid {
       border: 2px solid #2196F3;
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
       max-height: 100vh;
       overflow-y: scroll;
   }

   .month-header {
       background: #2196F3;
       color: white;
       display: grid;
       grid-template-columns: 200px repeat(12, 1fr);
       font-weight: 600;
       font-size: 0.9rem;
   }

   .month-header div {
       padding: 12px 8px;
       text-align: center;
       border-right: 1px solid rgba(255, 255, 255, 0.3);
   }

   .fish-row {
       display: grid;
       grid-template-columns: 200px repeat(12, 1fr);
       border-bottom: 1px solid #e0e0e0;
       transition: background-color 0.3s ease;
   }

   .fish-row:hover {
       background: #f5f5f5;
   }

   .fish-name {
       padding: 12px 15px;
       background: #f8f9fa;
       border-right: 2px solid #2196F3;
       font-weight: 500;
       display: flex;
       align-items: center;
       position: sticky;
       left: 0;
       z-index: 2;
       color: #2c3e50;
   }

   .availability-cell {
       border-right: 1px solid #e0e0e0;
       cursor: pointer;
       position: relative;
       transition: all 0.3s ease;
       min-height: 45px;
   }

   .availability-cell:hover {
       transform: scale(1.05);
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
       z-index: 3;
   }

   .filter-section {
       margin: 20px 0;
       padding: 20px;
       background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
       border-radius: 10px;
       border: 1px solid #2196F3;
   }

   .search-box {
       border: 2px solid #2196F3;
       border-radius: 25px;
       padding: 12px 20px;
       font-size: 1.1rem;
       transition: all 0.3s ease;
   }

   .search-box:focus {
       box-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
       /* border-color: #1976D2; */
   }

   .month-filter {
       margin-top: 15px;
   }

   .month-btn {
       margin: 3px;
       border-radius: 20px;
       transition: all 0.3s ease;
   }

   .month-btn.active {
       background: linear-gradient(to right, #70cfeb 0%, #3F8FEB 100%);
       border-color: #2196F3;
       color: white;
       transform: scale(1.05);
   }

   .tooltip {
       position: absolute;
       background: rgba(0, 0, 0, 0.9);
       color: white;
       padding: 8px 12px;
       border-radius: 6px;
       font-size: 0.85rem;
       pointer-events: none;
       z-index: 1000;
       transform: translate(-50%, -100%);
       margin-top: -10px;
       opacity: 0;
       transition: opacity 0.3s ease;
   }

   .tooltip::after {
       content: '';
       position: absolute;
       top: 100%;
       left: 50%;
       transform: translateX(-50%);
       border: 5px solid transparent;
       border-top-color: rgba(0, 0, 0, 0.9);
   }

   .stats-section {
       margin: 20px 0;
       padding: 20px;
       background: linear-gradient(to right, #70cfeb 0%, #3F8FEB 100%);
       border-radius: 10px;
       /* border: 1px solid #9C27B0; */
   }

   .main-content-margin {
       margin-bottom: 300px;
   }

   .header-area.header-default.sticky-header.sticky {
       z-index: 2000;
   }

   .stats-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 15px;
       margin-top: 15px;
   }

   .stats-section h5 {
       font-weight: 600;
       color: #fff;
   }

   .stat-card {
       background: white;
       padding: 15px;
       border-radius: 8px;
       text-align: center;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease;
   }

   .stat-card:hover {
       transform: translateY(-3px);
   }

   .stat-number {
       font-size: 2rem;
       font-weight: 700;
       color: #2196F3;
   }

   .stat-label {
       color: #666;
       font-size: 0.9rem;
       margin-top: 5px;
   }
.bg-success.bg-opacity-25 {
  background: #cfc !important;
}
.showli ul li {
  list-style: disc;
  margin-left: 15px !important;
}
   @media (max-width: 768px) {

       .month-header,
       .fish-row {
           grid-template-columns: 150px repeat(12, 40px);
           font-size: 0.8rem;
       }

       .fish-name {
           padding: 8px 10px;
       }

       .legend {
           gap: 15px;
       }

       .header h1 {
           font-size: 2rem;
       }

       .chart-grid {
           min-width: 632px;
       }

       .chart-container {
           overflow-x: scroll;
       }

       .month-header div {
           font-size: 7pt;
       }
   }

   .fade-in {
       animation: fadeIn 0.6s ease-in;
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
           transform: translateY(20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }