/* 공통 게막버튼 기본 스타일 */
.gemak-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Primary 버튼 */
  .gemak-button-primary {
    color: #ffffff;
    background-color: #2563eb;
    border: 1px solid #2563eb;
  }
  
  .gemak-button-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
  }
  
  .gemak-button-primary:active {
    background-color: #1e40af;
    border-color: #1e40af;
  }
  
  /* Outline 버튼 */
  .gemak-button-outline {
    color: #2563eb;
    background-color: transparent;
    border: 1px solid #2563eb;
  }
  
  .gemak-button-outline:hover {
    background-color: #eff6ff;
  }
  
  .gemak-button-outline:active {
    background-color: #dbeafe;
  }
  
  /* Secondary 버튼 */
  .gemak-button-secondary {
    color: #374151;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
  }
  
  .gemak-button-secondary:hover {
    background-color: #e5e7eb;
  }
  
  .gemak-button-secondary:active {
    background-color: #d1d5db;
  }
  
  /* Danger 버튼 */
  .gemak-button-danger {
    color: #ffffff;
    background-color: #dc2626;
    border: 1px solid #dc2626;
  }
  
  .gemak-button-danger:hover {
    background-color: #b91c1c;
  }
  
  .gemak-button-danger:active {
    background-color: #991b1b;
  }
  
  /* 링크 버튼 */
  .gemak-button-link {
    color: #2563eb;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
  }
  
  .gemak-button-link:hover {
    color: #1d4ed8;
  }
  
  /* 아이콘 포함 버튼 */
  .gemak-button-icon {
    gap: 0.5rem; /* 아이콘과 텍스트 간격 */
  }
  
  .gemak-button-icon i {
    font-size: 1rem;
  }
  
  /* 블록 버튼 (전체 너비) */
  .gemak-button-block {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  
  /* 작은 버튼 */
  .gemak-button-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  
  /* 큰 버튼 */
  .gemak-button-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* 비활성화된 버튼 */
  .gemak-button:disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    border: 1px solid #d1d5db;
    cursor: not-allowed;
    opacity: 0.7;
  }
  