* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #eef3f8;
  --panel: #ffffff;
  --panel-soft: #f7f9fc;
  --line: #d7e0eb;
  --line-strong: #c4d0de;
  --text: #1e2b3c;
  --sub: #5f6f82;
  --primary: #1d4f91;
  --primary-deep: #143766;
  --primary-soft: #edf4fd;
  --navy: #20324f;
  --soft-blue: #f4f8fd;
  --shadow-sm: 0 8px 18px rgba(19, 39, 68, 0.05);
  --shadow-md: 0 16px 30px rgba(19, 39, 68, 0.08);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1360px;
  --green-bg: #e8f7ee;
  --green-tx: #217a46;
  --yellow-bg: #fff4d6;
  --yellow-tx: #9a6b00;
  --red-bg: #ffe4e4;
  --red-tx: #c23b3b;
  --gray-bg: #edf1f6;
  --gray-tx: #5f6b7a;
  --font-body: "IBM Plex Sans KR", "Pretendard", "Noto Sans KR", sans-serif;
  --font-display: "IBM Plex Sans KR", "Pretendard", "Noto Sans KR", sans-serif;
}

html,
body {
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, #f5f8fc 0%, #edf2f7 100%);
}

button,
input,
select {
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #466181 50%),
    linear-gradient(135deg, #466181 50%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

select:hover {
  border-color: #b9cbe0;
}

a {
  color: inherit;
  text-decoration: none;
}
