.grid-form-setting {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
  row-gap: 0.5rem;
  column-gap: 1rem;
}

.span-text {
  font-weight: normal;
  font-size: 0.9rem;
  font-style: italic;
  color: #777;
}
.image-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-item {
  border: 2px solid transparent;
  padding: 5px;
  cursor: pointer;
  transition: border 0.2s;
}

.image-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.image-item.selected {
  border: 2px solid #007bff;
}
form ul {
  list-style: none !important;
  margin: 0 !important;
  width: 100%;
  border-bottom: 1px solid #272c3e !important;
}
form ul li a {
  height: stretch;
}
form .card-body .card-body {
  padding: 1rem !important;
  background-color: #1f2d3d;
}
.card-header {
  margin: 0 !important;
  background-color: #000c31;
}
.card-primary.card-outline-tabs > .card-header a.active,
.card-primary.card-outline-tabs > .card-header a.active:hover {
  border: none;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: none !important;
  color: #f1f1f1;
  background-color: #1f2d3d;
  border-color: #dee2e6 #dee2e6 #fff;
}
