/* 1. 기본 폰트와 배경 */
body {
    font-family: 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #212529;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
  }
  
  /* 2. 제목 스타일 */
  h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #222;
  }
  
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  
  /* 3. 버튼 스타일 */
  .btn-primary {
    background-color: #1976d2;
    border-color: #1976d2;
  }
  
  .btn-primary:hover {
    background-color: #1565c0;
    border-color: #1565c0;
  }
  
  .btn-outline-primary {
    color: #1976d2;
    border-color: #1976d2;
  }
  
  .btn-outline-primary:hover {
    background-color: #1976d2;
    color: white;
  }
  
  /* 4. 카드 */
  .card {
    border-radius: 12px;
  }
  
  /* 5. 입력폼 */
  .form-control:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25);
  }
  
  /* 6. 테이블 */
  .table thead th {
    background-color: #e9ecef;
    font-weight: 600;
    color: #343a40;
  }
  
  /* 7. 링크 */
  a {
    text-decoration: none;
    color: #1976d2;
  }
  a:hover {
    text-decoration: underline;
  }
  
  /* 8. 푸터 */
  footer {
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 20px 0;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
  }
  
  /* 9. 모바일 대응 여백 */
  @media (max-width: 576px) {
    .main-content {
      padding: 20px 10px;
    }
  }
  