.tabs-container {
  width: 100%;
  max-width: 664px;
  margin: 0 auto;
  /* border: 1px solid #ddd; */
  border-radius: 4px;
  overflow: auto;
  position: absolute;
  bottom: 0;
  margin-left: 152px;
  z-index: 9999;
}
  .tab{
    border: 2px solid black;
    margin: 10px 5px;
    margin-bottom: 5px;
    background-color: #1d1d1d;
    max-width: 129px;
    width: 106px;
    min-width: 117px;
    position: relative;
    /* transition: top 0.6s ease-in-out; */
    
  }
 
 

.tab:hover {
    top: -4px;
    transform: scale(1.05); /* Slightly increase size */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}


  .tab button{
    
    color: #f0f0f0;
  }
  .tab button:focus-visible{
    outline: none !important ;
  }
  .close-tab{
    background-color: #1d1d1d;
  }

  .tabs-header {
    display: -webkit-inline-box;
  }
  .tabs-header button {
    /* margin: 10px; */
    margin-left: 10px;
}
 
  
  .tab-button {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    background-color: #1a2721  ;
    border: none;
    font-size: 11px;
     
  }
  
  .tab-button.active {
    /* background-color: #fff; */
    border-bottom: 2px solid #007bff;
  }
  .minimize-tab{
    /* border: none; */
  }
  .close-tab{
    border: none;
  }
  .tab-content {
    position: absolute;
    right: 0;
    background-color: #f0f0f0;
    height: 100vh;
    width: 40%;
    height: calc(100vh - 56px);
    bottom: 0;
    z-index: 50;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

  .ReactModal__Overlay .ReactModal__Overlay--after-open .image-modal-overlay{
    z-index: 100;
  }
  .ReactModalPortal{
    position: absolute;
    width: 100vw;
    background: #0000004f ;
    z-index: 10000000;

  }
  .visitor-id-rectangle {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  }
  .tabs-container {
    
    overflow-x: auto;
    white-space: nowrap;
   
    display: flex;
    flex-direction: column;
  }
  .tabs-arrows-left-right{
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    /* height: 34px; */
    max-height: 34px;
  }
  .bubble-left{
    position: absolute;
    left: 0;

  }
  .bubble-right{
    position: absolute;
    right: 0;
  }
  .tabs-header {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: thin; /* Show thin scrollbar in Firefox */
    overflow-y: hidden
  }
  
  
  .tabs-header::-webkit-scrollbar {
    height: 8px; /* Visible scrollbar for WebKit browsers */
  }
  
  .tabs-header::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar */
    border-radius: 4px;
  }
  
  .tabs-header::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker on hover */
  }
  
  .tab {
    display: inline-block;
    margin-right: 10px;
    background-color: #1a2721 ;
    position: relative;
    background: #1d1d1d;
    border: 0;
    margin-bottom: -4px;

    transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: background-color 0.3s ease; /* Smooth transition */
  }
  
  .tab-button {
    padding: 10px 10px;
    cursor: pointer;
    
  }
  
  .active {
    background-color: #007bff;
    color: white;
  }
  
  .close-tab {
    margin-left: 5px;
    cursor: pointer;
  }
.active-visitor-tab{
  background-color:  #7ba647 ;
}  
.blinking {
  animation: blink-animation 1.5s steps(5, start) infinite;
}
.tab-ring {
  width: 10px;
  height: 10px;
 
  position: absolute;
  left: 6px;
  top: 13px;
  border-radius: 10px;
}

.tab-ring {
  height: 12%;
  top: 0;
  left: 0;
  border-radius: 0px;
  width: 100%;
  z-index: 222;
}

.tab{
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* align-items: center; */
  position: relative;
}
@keyframes blink-animation {
 0% {
    background: #1d1d1d;
}
50% {
    background: #2a7e60;
}
75% {
    background: #1D664C;
}
100% {
    background: #1d1d1d;
}
}
 .visitor-left{
    background-color: purple ;
  }

 

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  animation: bubbleAnimation 4s infinite;
}

@keyframes bubbleAnimation {
  0% {
    transform: scale(0.3) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(-100px);
    opacity: 0;
  }
}

.bubble-container {
 
  display: inline-block;
}

.bubble-button {
  position: relative;
  padding: 5px;
  border: none;
  border-radius: 5px;
 background-color: transparent;
  /* color: white; */
  cursor: pointer;
  /* animation: fadein 1.5s steps(5, start) infinite; */
  overflow: hidden;
}
.bubble-button svg{
  color: orange;
    animation: fadein 1.5s steps(5, start) infinite;
}
@keyframes fadein{
  0% {opacity: 0.5;}
  100% {opacity: 1;}
}

.bubble-button .bubble {
  position: absolute;
  /* background-color: rgba(255, 255, 255, 0.6); */
  width: 10px;
  height: 10px;
}

.bubble-button:hover .bubble {
  /* animation-play-state: running; */
}
.visitor-active-tab{
 
}
.tab.visitor-active-tab, .tab.visitor-active-tab button { color: #000; background:#d5e7e7; }

.tab.visitor-active-tab{ border:1px solid #c7d1d1; border-bottom:0; }

button.close-tab { right: 4px; }

button.close-tab {
  position: relative;
  top: -1px;
  background: transparent;
  right: 0;
  height: 100%;
  font-size: 15px;
  margin-right: 2px;
 
}

.tab-ring {
  height: 12%;
  top: 0;
  left: 0;
  border-radius: 0px;
  width: 100%;
  z-index: 222;
}


.tabs-header button {
  box-sizing: border-box;
  text-align: left;
  padding-left: 0px !important;
  /* font-size: 10px; */
  margin-left: 9px;
}
 

.tab {
  background: #1d1d1d;
  border: 0;
  margin-bottom: -4px;
}
