@font-face {
    font-family: 'notokr';
    src: url(/font/NotoSansKR-Bold.otf);
    font-weight: 700;
}

@font-face {
    font-family: 'notokr';
    src: url(/font/NotoSansKR-Medium.otf);
    font-weight: 500;
}

@font-face {
    font-family: 'notokr';
    src: url(/font/NotoSansKR-Regular.otf);
}

:root {
    --primary-color: #007BFF;
    --secondary-color: #797979;
    --light-color: #F8F9FA;
    --dark-color: #464646;
    --grey-color: #DFDFDF;
    font-family: 'notokr';
}

body {
    width: 100vw;
    height: 100vh;
    background-color: var(--light-color);
    position: relative;
}

.h1_font {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
}

.h2_font {
    font-size: 24px;
    font-weight: 700;
}

.h3_font {
    font-size: 18px;
}

.h4_font {
    font-size: 14px;
}

.h5_font {
    font-size: 12px;
}

.input_style_01{
    width: 100%;
    height: 54px;
    border-radius: 8px;
    font-size: 20px;
    font-family: notokr;
    color: var(--dark-color);
    padding: 0 20px 0 20px;
    box-sizing: border-box;
}

button{
    cursor: pointer;
}

form{
    width: 100%;
}

.main_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    height: 820px;
    width: 670px;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 32px;
    border: 2px solid var(--grey-color);
    background-color: white;
    box-sizing: border-box;
    padding: 131.5px 102px 131.5px 102px;
}

/* ── Phase 10: 다크모드 ───────────────────────────────────────── */
:root {
  --bg-primary: #fff;
  --bg-secondary: #f4f6f9;
  --text-primary: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --card-bg: #fff;
  --table-stripe: rgba(0,0,0,.05);
}
body.dark-mode {
  --bg-primary: #343a40;
  --bg-secondary: #2d3035;
  --text-primary: #d4d8dd;
  --text-muted: #9ba1a8;
  --border-color: #4a5568;
  --card-bg: #3d4349;
  --table-stripe: rgba(255,255,255,.05);
}
body.dark-mode {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
body.dark-mode .card,
body.dark-mode .content-wrapper {
  background-color: var(--card-bg);
  color: var(--text-primary);
}
body.dark-mode .table {
  color: var(--text-primary);
  border-color: var(--border-color);
}
body.dark-mode .table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--table-stripe);
}
body.dark-mode .form-control {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-color);
}
body.dark-mode .main-header,
body.dark-mode .main-sidebar {
  background-color: #1a1d21;
}
body.dark-mode .nav-link,
body.dark-mode .sidebar-dark-primary .nav-link {
  color: var(--text-primary);
}