/* アイコンリング用のレイアウト */
.upload-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf4 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(144, 209, 104, 0.1);
    border: 1px solid rgba(144, 209, 104, 0.1);
  }
  
  .section-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .preview-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
  }
  
  .preview {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: var(--border-radius);
    background-color: var(--secondary-color);
    padding: 0.5rem;
  }
  
  /* input[type="file"] の見た目など */
  input[type="file"] {
    display: block;
    width: 100%;
    margin: 1rem 0;
    padding: 0.5rem;
    border: 2px dashed var(--secondary-color);
    border-radius: var(--border-radius);
  }
  
  /* processCanvas は非表示 */
  canvas {
    display: none;
  }
  
  /* レスポンシブ */
  @media (max-width: 600px) {
    .preview {
      width: 150px;
      height: 150px;
    }
  }
  