/* Product Form Specific Styles */

.upload-box {
  border: 2px dashed #d6d6e7;
  border-radius: 12px;
  background-color: #fafbfc;
  transition: all 0.2s ease;
}
.upload-box:hover {
  background-color: #f0f2f7;
}

.tab-header {
  display: flex;
  background-color: none;
  margin-bottom: 20px;
  border: none;
}
.tab-link {
  /* flex: 1; */
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #6c757d;
  position: relative;
  transition: all 0.2s ease;
  border: none;
}
.tab-link.active {
  color: #fff;
}
.tab-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px 2px 0 0;
}
.tab-header2 {
  display: flex;
  background-color: none;
  margin-bottom: 5px;
  border: none;
}
.tab-link-in {
  /* flex: 1; */
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #6c757d;
  position: relative;
  transition: all 0.2s ease;
  border: none;
}
.tab-link-in.active {
  color: #0d6efd;
  border-bottom: 2px solid #0d6efd;
}
/* .tab-link-in.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px 2px 0 0;
} */