/*!***************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/css/apps/ai-endpoints.scss ***!
  \***************************************************************************************************************************************************************************************************************************/
.list-item {
  list-style-type: none;
  display: grid;
  grid-template-columns: 20% 20% 15% 20% 20% 5%;
  border-bottom: 1px solid #9DB960;
  height: 4rem;
  align-items: center;
  padding: 0 1rem;
}

.list-item.new-item {
  background-color: #e2eacf;
}

.list-item.new-item input {
  height: 2rem;
  margin: 0.5rem;
  border-radius: 5px;
  border: none;
  outline: none;
}

.list-item:last-child {
  border-bottom: none;
}

.item-url-wrapper {
  display: inline-flex;
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-radius: 5px;
  margin: 0.5rem;
  justify-content: space-between;
}

.item-key-wrapper {
  display: inline-flex;
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-radius: 5px;
  margin: 0.5rem;
  justify-content: space-between;
}

.item-url {
  padding-right: 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}

.item-key {
  padding-right: 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}

.item-copy {
  border: none;
  outline: none;
  background: none;
  transition: filter 1s;
}

.item-copy:active {
  filter: brightness(0.5);
  transition: filter 0s;
}

.item-copy-img {
  height: 1rem;
  width: 1rem;
  cursor: pointer;
}

.item-title {
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}

.item-name {
  margin: 0.5rem;
}

.item-version {
  margin: 0.5rem;
}

.item-delete {
  height: 2rem;
  width: 2rem;
  padding: 0.25rem;
  background: #dc3545;
  outline: none;
  border: none;
  border-radius: 5px;
  place-self: center;
  transition: filter 1s;
}

.item-delete:active {
  filter: saturate(0.5);
  transition: filter 0s;
}

.item-save {
  height: 2rem;
  width: 2rem;
  padding: 0.25rem;
  background: #9DB960;
  outline: none;
  border: none;
  border-radius: 5px;
  place-self: center;
  transition: filter 1s;
}

.item-save:active {
  filter: saturate(0.5);
  transition: filter 0s;
}

.endpoint-type-select {
  display: block;
  width: auto;
  height: 2rem;
  margin: 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 0.2rem;
  border-color: #afafaf;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}

.error {
  border: 1px solid #dc3545 !important;
}

.endpoint-type-select:invalid {
  color: #757575;
}

#container {
  display: flex;
  flex-direction: column;
  border: 1px solid #9A9A9A;
  border-radius: 15px;
  height: max-content;
  overflow: hidden;
  margin-top: 1rem;
}

#header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  height: 5rem;
}

#header-text {
  font-size: 1.5rem;
  font-weight: bold;
}

#list-header-wrapper {
  display: grid;
  grid-template-columns: 20% 20% 15% 20% 20% 5%;
  align-content: center;
  background: #EEEEEE;
  height: 3rem;
  padding: 1rem;
}

#list-wrapper {
  height: calc(100% - 8rem);
}

#list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: auto;
  height: 100%;
}

#list::-webkit-scrollbar {
  width: 0.5rem;
}

#list::-webkit-scrollbar-thumb {
  background: #9DB960;
  border-radius: 1rem;
}

#list::-webkit-scrollbar-track {
  background: #EEEEEE;
}

/*# sourceMappingURL=ai-endpoints.css.map*/