/* CSS 그라데이션 생성기 전용 스타일 */

/* 색상 스톱 리스트 스타일 */
.color-stop-list {
    margin: 15px 0;
    max-width: 100%;
  }
  
  .color-stop-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
  }
  
  .color-stop-item input[type="color"] {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
  }
  
  .color-stop-item input[type="number"] {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
  }
  
  /* 그라데이션 미리보기 영역 */
  .gradient-preview {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border: 1px solid var(--gray-300);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  /* 코드 영역 스타일 */
  #codeArea {
    width: 100%;
    height: 100px;
    font-family: monospace;
    padding: 10px;
    resize: vertical;
    background-color: var(--gray-100);
    color: var(--dark);
  }
  
  /* 버튼 그룹 관련 추가 스타일 */
  .color-stop-item .btn-remove {
    background-color: var(--danger);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .color-stop-item .btn-remove:hover {
    background-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  }
  
  /* 반응형 조정 */
  @media (max-width: 768px) {
    .color-stop-item {
      flex-wrap: wrap;
    }
    
    .color-stop-item input[type="color"] {
      width: 35px;
      height: 35px;
    }
  }