
.top-left {
    position: absolute;

    
    top: 25px;
    left: 25px;
  }
  
  .top-right {
    position: absolute;
    z-index: 1000;
    top: 25px;
    right: 25px;
  }
  
  .bottom-left {
    position: absolute;
    bottom: 25px;
    left: 25px;
    
  }
  
  .bottom-right {
    position: absolute;
  
    bottom: 25px;
    right: 25px;
  }
  .bottom-center {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .chat-expand-button {
    border-radius: 12px;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 12px;
    transition: all 1s;
    width: 48px;
  }

  #chat-expand{
    height: 40vh;
    overflow-y: scroll;
    padding-right: 5px; /* Sağ tarafta biraz alan bırakmak için */
    box-sizing: border-box; /* Padding ve border'ı genel boyuta dahil et */
    
  }

 /* Scrollbar'ı özelleştir */
#chat-expand::-webkit-scrollbar {
  width: 5px; /* Scrollbar genişliği */
}

/* Scrollbar butonunu özelleştir */
#chat-expand::-webkit-scrollbar-button {
  height: 0px; /* Scrollbar butonu yüksekliği, gereksizse 0 yapılabilir */
}

/* Scrollbar yolu (track) */
#chat-expand::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5); /* Cam rengi, burada şeffaflık için rgba kullanıldı */
  border-radius: 3px;
}

/* Scrollbar tutamaç (thumb) */
#chat-expand::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5); /* Tutamaç için cam rengi, şeffaflık ayarıyla */
}

/* Scrollbar tutamaç hover durumu */
#chat-expand::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.7); /* Mouse üzerine geldiğinde tutamaç rengi */
}
  
  .dock-box {
    border-radius: 12px;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 12px;
    transition: all 0.5s;
    width: 48px;
  }
  
  .content-1 {
  }
  .content-1:hover {
    width: 124px;
  }
  
  .content-2 {
  }
  .content-2:hover {
    width: 132px;
  }
  
  .content-3 {
  }
  .content-3:hover {
    width: 99px;
  }
  
  .content-4 {
  }
  .content-4:hover {
    width: 140px;
  }
  
  .content-5 {
  }
  .content-5:hover {
    width: 141px;
  }
  
  .content-6 {
  }
  .content-6:hover {
    width: 111px;
  }
  
  .dock-box span {
    display: none;
  }
  .dock-box span {
    transition: all 0.5s;
    transition-delay: 0.5s;
  }
  .dock-box:hover span {
    display: block;
  }
  
  .dock-box-text {
    display: none;
    color: #fff;
    overflow: hidden;
    height: 24px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 8px;
    transition: all 1s;
  transition-delay: 1s;
  
  }
  /* 
  .dock-box-text:hover {
    opacity: 1;
  } */
  
  .gradient-border {
    box-shadow: 0px -1px 0.5px 0.5px rgba(255, 255, 255, 0.2),
      0px 1px 1px 1px rgba(255, 255, 255, 0);
    cursor: pointer;
  }
  
  .chat-box {
    display: flex;
    padding: 12px 16px;
    width: 372px;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
  
  ::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .chat-input {
    color: white;
    width: 372px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: none !important;
    outline: none !important;
  }
  
  .main-container {
    padding: 16px;
    display: flex;
    width: 424px;
    flex-direction: column;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 12px 0 0 12px ;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    align-self: stretch;
    margin-bottom: 4px;
  
    transition: all;
    transition-duration: 400ms;
  }
  
  .panel {
    position: absolute;
    bottom: 100px;
    right: 25px;
  }
  
  .chatter {
    height: 48px;
    width: 100%;
    display: flex;
    gap: 8px;
  }
  
  .inspect {
    display: flex;
    flex-direction: row;
    width: 424px;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
  
    backdrop-filter: blur(50px);
  }
  
  .key-bindings {
    display: flex;
    width: 424px;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    border-radius: 12px;
  
    background: rgba(255, 255, 255, 0.1);
  
    backdrop-filter: blur(50px);
  }
  
  .key-letter {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
  
    background: rgba(255, 255, 255, 0.1);
  
    color: #fff;
  
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
  }
  
  .key-word {
    display: flex;
    width: max-content;
    padding: 4px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
  
    color: #fff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
  }
  
  /* TOGGLE BUTTON */
  .toggle-btn {
    flex: 1;
    cursor: pointer;
    color: #fff; /* Default text color */
    text-align: center;
    padding: 12px 12px;
    border: none;
    background: none;
    transition: color 0.5s ease-in-out; /* Smooth transition */
  }
  
  /* Active button styling */
  .toggle-btn[data-option="active"] {
    color: #000; /* Change to your desired active text color */
  }
  
  .slider-wrapper {
    width: 392px;
    background: rgba(255, 255, 255, 0.1);
  
    backdrop-filter: blur(15px);
    border-radius: 100px;
    position: relative;
  }
  
  .slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 192px;
    height: 100%;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-in;
  }
  
  .toggle-btn {
    padding: 10px 32px;
  
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    transition: color 0.5s ease-in-out;
  }
  
  .toggle-btn.active {
    color: white;
  }
  
  .project-btn {
    /* Styles for Project Items button */
  }
  
  .additional-btn {
    /* Styles for Additional Items button */
    margin-left: 1rem; /* Adjust spacing between buttons */
  }
  
  .hidden {
    display: none;
  }
  .selected {
    background-color: rgb(255, 255, 255);
  }
  
  .black-text {
    color: black;
  }
  .white-text {
    color: white;
  }
  
  .active-slider {
    width: 160px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: black;
    background-color: white;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
  }
  .deactive-slider {
    width: 160px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: white;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
  }
  
