@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background-color: hsl(214, 28%, 5%);
  color: hsl(0, 0%, 95%);
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  background: #000000;
}

.hover-focus1 {
  transition: 0.15s ease;
}
.hover-focus1:hover:not(.selectedTab) {
  background-color: rgba(226, 226, 226, 0.15) !important;
}

.hover-focus2 {
  transition: 0.15s ease;
}
.hover-focus2:hover:not(.selectedTab) {
  background-color: rgba(226, 226, 226, 0.25) !important;
}

header #tab-list {
  height: 70vh;
  overflow: scroll;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
header #tab-list .tab-item {
  position: relative;
  display: flex;
  gap: 0.5rem;
  width: 95%;
  border-radius: 6px;
  background: rgba(226, 226, 226, 0);
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0.5rem;
  font: inherit;
  color: inherit;
  font-weight: 500;
  animation: slide-in-from-top 0.15s ease;
}
header #tab-list .tab-item img {
  height: 1.25em;
}
header #tab-list .tab-item span {
  font: inherit;
  color: inherit;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
  text-align: left;
}
header #tab-list .tab-item .close {
  position: absolute;
  right: 0.5rem;
  background-color: transparent;
  border: none;
  outline: none;
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  transition: 0.15s ease;
}
header #tab-list .tab-item .close:hover {
  background-color: rgba(226, 226, 226, 0.17);
}
header #tab-list .tab-item .close .close-icon {
  font-size: 1.2rem;
  color: transparent;
  height: 1.2rem;
  width: 1.2rem;
}
header #tab-list .tab-item.selectedTab {
  background: rgba(226, 226, 226, 0.25);
}
header #tab-list .tab-item:hover .close-icon {
  color: rgb(220, 220, 220);
}

@keyframes slide-in-from-top {
  0% {
    transform: translateY(-25%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-out-from-bottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-25%);
    opacity: 0;
  }
}

/*# sourceMappingURL=tablist.css.map */
