.filter-section {
      display: none; /* Initially hidden */
      opacity: 0;
      transition: opacity 0.5s ease-in-out; /* Fade transition */
      padding: 20px;
      background-color: #f9f9f9; /* Light background for better contrast */
      border: 1px solid #ddd;
      border-radius: 10px; /* Rounded corners */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
      border-left: 5px solid #28a745;
      background-color: white;
      margin-top: 15px;
   }
   .filter-section label {
      font-weight: bold;
      font-size: 14px;
      color: #333;
   }
   .filter-section select, .filter-section input {
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
      width: 100%;
      max-width: 200px;
   }
   .filter-section button {
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
   }
   .filter-section .btn-outline-success:hover {
      background-color: #28a745;
      color: white;
   }
   .filter-section .btn-outline-danger:hover {
      background-color: #dc3545;
      color: white;
   }
   
   .toggle-area {
	  background: linear-gradient(to right, #28a745, #20c997);
	  border-radius: 30px;
	  padding: 10px 20px;
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	  transition: all 0.3s ease;
	  color: white;
	  text-align: center;
	  cursor: pointer;
	  font-size: 16px;
	  font-weight: bold;
	}
	.toggle-area:hover {
	  background: linear-gradient(to right, #20c997, #28a745);
	  transform: scale(1.05);
	  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
	}
	
@media (max-width: 768px) {
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .filter-group label {
        flex-shrink: 0;
    }
    .filter-group select, .filter-group input {
        flex-grow: 1;
    }
    .filter-button {
        width: 100%;
        max-width: 200px;
    }
    .filter-section .filter-group {
        width: 100%;
    }
    .filter-section select, .filter-section input {
        max-width: 100%;
    }
    .filter-section button {
        width: 100%;
    }

}