

ul.d-ul {
  padding-left: 1.5rem !important;
}
.list-head {
  font-size: 1rem !important;
  margin: 1rem 0 !important;
  font-weight: 500 !important;
}
li.dislist {
  margin: 0.5rem 0 !important;
  font-weight: 400 !important;
  list-style-type: disc !important;
}
.studio-wrapper {
  display: flex;
  min-height: 800px;
  margin-top: 1rem;
}
.bg-white.border-b.border-gray-200.sticky.top-0.z-50 {
  border-top: 1px solid#dcdcdc;
  border-bottom: 1px solid#dcdcdc;
}
.controls-panel {
  width: 35%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex-shrink: 0;
  z-index: 20;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.02);
}
.tabs-nav {
  display: flex;
  background: white;
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0 5px;
  border-bottom: 1px solid#e2e8f0;
}
.tab-btn {
  flex: 1;
  padding: 16px 5px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #004098;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tab-btn:hover {
  color: #1e293b;
  background: #f8fafc;
}
.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}
.tab-btn i {
  font-size: 1.1rem;
}
.control-group {
  padding: 24px;
  display: none;
  animation: fadeIn 0.3s ease;
}
.control-group.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.studio-input {
  width: 100%;
  border: 1px solid#cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9rem;
  transition: all 0.2s;
  background: #fff;
}
.studio-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.selection-item {
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid#e2e8f0;
  background: #fff;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.selection-item:hover {
  border-color: #94a3b8;
  transform: translateY(-2px);
}
.selection-item.selected {
  border-color: var(--primary-color);
  background: #eff6ff;
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: 0 4px 6px-1px rgba(37, 99, 235, 0.1);
}
.selection-item i {
  font-size: 1.5rem;
  color: #94a3b8;
}
.selection-item.selected i {
  color: var(--primary-color);
}
.gradient-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.grad-item {
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s;
  position: relative;
}
.grad-item:hover {
  transform: scale(1.15);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.grad-item.active {
  border-color: #1e293b;
  transform: scale(1.1);
}
.canvas-area {
  flex: 1;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
  margin: 0.5rem;
}
#main-canvas {
  box-shadow: 0 20px 50px-12px rgba(0, 0, 0, 0.3);
  max-height: 90%;
  max-width: 90%;
  transition: transform 0.1s;
  border-radius: 4px;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  margin-top: -7px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #e2e8f0;
  border-radius: 2px;
}
@media (max-width:1024px) {
  .studio-wrapper {
    flex-direction: column;
    height: auto;
    display: block;
  }
  .controls-panel {
    width: 100%;
    height: auto;
    border-right: none;
    box-shadow: none;
  }
  .canvas-area {
    height: 500px;
    padding: 20px;
  }
  .tabs-nav {
    position: relative;
    overflow-x: auto;
  }
}
