nav {
  position: relative !important;
}
 
 /* Container styling */
 /* .page-hide {
  position: fixed;
  background-color: #01040a;
  width: 1428px;
  height: 270px;
  z-index: 1;
 } */

 .dash-tab {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 1428px;
  padding: 55px;
 }
 
.guide {
  position: relative;
  z-index: 5;
}

 .tab-container {
    display: flex;
    position: relative;
    background-color: #161A21; /* Dark background */
    border-radius: 10px;
    padding: 8px;
    width: fit-content;
    position: relative;
    gap: 10px;
  }
  
  /* Buttons styling */
  .tab-button {
    background: none;
    border: none;
    color: #ffffff; /* White text color for better visibility */
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    border-radius: 8px; /* Rounded corners */
    font-size: 1.1rem;
  }
  
  .tab-button.active {
    background-color: #fff; /* Blue background for active tab */
    color: #161A21; /* White text for active tab */
    font-weight: bold;
  }
  
  /* Add hover effect even for the active button */
  .tab-button:hover {
    background-color: #d8e3ff32; /* Lighter blue on hover */
    color: #fff; /* Blue text for hover */
  }
  
  /* Override hover effect for the active button */
  .tab-button.active:hover {
    background-color: #fff; /* Keep blue background */
    color: #161A21; /* Keep white text */
  }
  
  /* Slider (active background for selected tab) */
  .tab-slider {
    position: absolute;
    background: #fff;
    height: 72%;
    width: 32.5%; 
    border-radius: 8px; 
    transition: transform 0.3s ease; 
    z-index: 0;
  }
  
  /* Bottom bar styling */
  .tab-bar {
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px; 
    width: 33.33%;
    background-color: #ffffff; 
    transition: transform 0.3s ease; 
    z-index: 1; 
  }


  #webcrumbs {
    display: flex;
    justify-content: center;
    padding: 30px;

}

.wrapper {
    position: relative;
    width: 1350px;
    background-color: #161a21;
    border-radius: 13px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 7px 8px;
    z-index: 5;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #23272f;
    border-radius: 12px;
    padding: 10px;
    flex-grow: 1;
}

.search-bar span {
    color: #fff;
    align-items: center;
    padding: 5px 5px 5px 10px;
    
}

.search-bar input {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 16px;
    flex-grow: 1;
    outline: none;
    padding: 5px;
    cursor: text;
}

.shortcut, .action-btn {
    margin-left: 10px;
    background-color: #23272f;
    color: #fff;
    font-size: 14px;
    padding: 15px 15px;
    border-radius: 15px;
}

.action-btn {
    background-color: #f7f7f7;
    color: #161A21;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.02rem;
}

.action-btn:hover {
    background-color: #f7f7f7;
    color: #161A21;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.02rem;
}
  