/* 해시 생성/검증기 전용 스타일 */

/* 알고리즘 체크박스 그리드 */
.algorithm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  /* 해시 결과 항목 스타일 */
  .hash-result-item {
    margin-bottom: 1rem;
  }
  
  .hash-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .hash-value-input {
    font-family: monospace;
    background-color: var(--gray-100);
  }
  
  /* 복사 버튼 스타일 */
  .copy-hash-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
  }
  
  .copy-hash-btn:hover {
    background-color: var(--primary);
    color: white;
  }
  
  /* 결과 상태 메시지 */
  .verify-success {
    color: var(--success);
    font-weight: bold;
    padding: 0.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
    margin: 1rem 0;
  }
  
  .verify-error {
    color: var(--danger);
    font-weight: bold;
    padding: 0.5rem;
    background-color: rgba(244, 67, 54, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
    margin: 1rem 0;
  }
  
  /* 해시 정보 리스트 */
  .hash-info-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hash-info-list li {
    margin-bottom: 0.5rem;
  }
  
  /* 로딩 표시 스타일 */
  .processing-message {
    padding: 1rem;
    text-align: center;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  /* 반응형 조정 */
  @media (max-width: 768px) {
    .algorithm-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .copy-hash-btn {
      padding: 0.2rem 0.4rem;
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .algorithm-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }