/* Breadcrumb Style */
#breadcrumb {
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    /* color: #555; */
    /* margin-bottom: 10px; */
    padding: 8px;
    /* background-color: #f5f5f5; */
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    /* font-weight: bold; */
  }

  #breadcrumb-container {
    /* font-family: Arial, sans-serif; */
    /* font-size: 16px; */
    /* color: #555; */
    margin: 10px 20px;
    padding: 8px;
    /* background-color: #f5f5f5; */
    border: 1px solid #ddd;
    border-radius: 4px;
    /* font-weight: bold; */
  }
  
  /* Filter Row */
  .filter-row {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px;
    /* background-color: #f5f5f5; */
    margin: 8px 0;
    border-bottom: 1px solid #ddd;
    /* border-radius: 4px; */
  }
  
  /* Tab Style */
  .filter-tab {
    flex: 0 0 auto;
    padding: 2px 15px;
    margin: 0 5px;
    /* border: 1px solid #ddd; */
    border-radius: 4px 4px 0 0;
    /* background-color: #e0e0e0; */
    cursor: pointer;
    text-align: center;
    /* font-family: Arial, sans-serif; */
    font-size: 14px;
    user-select: none;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
  }
  
  /* Hover Effect */
  .filter-tab:hover {
    background-color: #d4d4d4;
  }
  
  /* Selected Tab Style (like browser tabs) */
  .filter-tab.selected {
    /* background-color: #007BFF; */
    /* color: #fff; */
    border-bottom: 4px solid #fff; /* To give the "tab selected" effect */
    font-weight: bold;
    z-index: 1;
  }
  
  /* Output Box */
  .output {
    padding: 15px;
    /* background-color: #fff; */
    border: 1px solid #ddd;
    border-radius: 4px;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    text-align: center;
  }
  
  /* Optional: Hide Horizontal Scrollbar */
  .filter-row::-webkit-scrollbar {
    display: none;
  }
  .filter-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  

  /* ---------------------------------- */
/* Settings Icon */
.settings-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
   
  }
  
  .settings-icon:hover {
    color: #000;
  }
  
  /* Filter Tab Close Button */
  .filter-tab.closeable {
    position: relative;
    padding-right: 25px;
  }
  
  .filter-tab .close-btn {
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 14px;
    color: red;
    cursor: pointer;
    display: none;
  }
  
  .filter-tab.closeable:hover .close-btn {
    display: block;
  }
  


  /* ---------------------------------- */

  /* Edit Toggle (Slider) */
.edit-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
  }
  
  .toggle-label {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
  }
  
  .toggle-label input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #007BFF;
  }
  
  input:checked + .slider:before {
    transform: translateX(14px);
  }
  