/* TabStrip Wrapper */
.k-tabstrip-wrapper:not(.k-window *) {
    padding-top: 40px;
    background-image: linear-gradient(to right, #845ec2, #ff9671);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#details-view .k-tabstrip-wrapper {
    padding-top: initial;
    background-image: none;
    display: inherit;
    justify-content: inherit;
    align-items: inherit;
}

/* TabStrip Container */
#tabstrip {
    background: none;
    border: none;
    padding: 0;
}

/* Tab Items */
.k-tabstrip-items {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.k-tabstrip-items {
    padding: 0px 20px;
}

.k-tabstrip-wrapper .k-tabstrip-items .k-state-default .k-link:not(.k-window *) {
    color: #fff;
}
#details-view .k-tabstrip-items .k-state-default .k-link {
    color: #2e2e2e;
}

.k-tabstrip-wrapper .k-tabstrip-items .k-state-active .k-link:not(.k-window *) {
    color: #151a36;
}

#tabstrip .k-item {
    position: relative;
    padding-top: 10px;
    margin: 0 5px;
    background: transparent;
    border: none;
    color: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    border-radius:5px 5px 0 0;
}

/* Hover State */
#tabstrip .k-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

/* Active Tab */
#tabstrip .k-item.k-state-active {
    background: #fff;
    color: #151a36;
    border-top: 1px solid transparent;
    padding: 7px 20px;

}

@media screen and (max-width: 767px) {
    /* Wrapper Styles */
    .k-tabstrip-wrapper {
      padding: 10px 0;
      background-image: linear-gradient(to right, #845ec2, #ff9671);
      overflow-x: auto;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 10px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch; /* Enable momentum scrolling for iOS */
    }
  
    /* TabStrip Items */
    .k-tabstrip-items {
      display: inline-flex;
      padding: 0;
      margin: 0;
      list-style: none;
      gap: 10px; /* Space between tabs */
    }
  
    /* Individual Tab */
    .k-tabstrip-items .k-item {
      flex: 0 0 auto;
      padding: 8px 12px;
      background: #fff;
      color: #151a36;
      border: none;
      border-radius: 30px; /* Rounded pill-like tabs */
      font-size: 12px;
      font-weight: 500;
      text-align: center;
      cursor: pointer;
      transition: all 150ms ease-in-out;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
  
    /* Hover State */
    .k-tabstrip-items .k-item:hover {
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
  
    /* Active Tab */
    .k-tabstrip-items .k-item.k-state-active {
      background: #ff9671;
      color: white;
      font-weight: bold;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }
  }
  
  