/* Common CSS Variables */
/* 공통 CSS 변수 정의 - 모든 페이지와 모달에서 공유 */

:root {
  /* Primary Colors */
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  
  /* Status Colors */
  --success-color: #10b981;
  --error-color: #ef4444;
  
  /* Text Colors */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  
  /* Border & Background */
  --border-color: #e5e7eb;
  --background: #f9fafb;
  --white: #ffffff;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* Button Colors */
  --button-bg: #000000;
  --button-bg-hover: #1a1a1a;
  --button-disabled: #9ca3af;
  
  /* Modal Specific (can be overridden) */
  --modal-backdrop: rgba(0, 0, 0, 0.6);
  --modal-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
