@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');
@font-face {
	font-family: 'Orbit-Regular';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/Orbit-Regular.woff2')
		format('woff2');
	font-weight: normal;
	font-style: normal;
}
/* Reset HTML styling */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
	font-size: 12px;
	font-family:
		'Pretendard Variable',
		Pretendard,
		-apple-system,
		BlinkMacSystemFont,
		system-ui,
		Roboto,
		'Helvetica Neue',
		'Segoe UI',
		'Apple SD Gothic Neo',
		'Noto Sans KR',
		'Malgun Gothic',
		'Apple Color Emoji',
		'Segoe UI Emoji',
		'Segoe UI Symbol',
		sans-serif;
	background-color: var(--background-color);
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root,
.theme-default {
	--primary-color: #0e0e0e;
	--surface-color: #fffffe;
	--secondary-color: #555555;
	--accent-color: #ff7474;
	--accent-highlight-color: #ffb5b5;
	--background-color: #ffffff;
	--text-color: #000000;
	--border-color: #dddddd;
	--highlight-color: #ff5c5c;
	--onBackground-color: #dddddd;
	--onSurface-color: #d9d9d9;
	--onPrimary-color: #e0e0e0;
	--onSecondary-color: #e0e0e0;
	--block-color: #dddddd;
	--handle-color: #6e6e35;
}

.theme-dark {
	--primary-color: #170202;
	--text-color-standard: #dedadb;
	--text-color-bright: #ffffff;
	--secondary-color: #140a0a;
	--hover-color: #4d3842;
	--highlight-color: #34232b;
	--dim-color: #75696db6;
	--glass-background: #170202c2;
}

.theme-otr-light {
	--primary-color: #ffffff;
	--text-color-standard: #141e19;
	--text-color-bright: #3e6652;
	--secondary-color: #dbdbdb;
	--hover-color: rgba(0, 199, 116, 0.715);
	--highlight-color: #00ff95;
	--dim-color: #343f3ab6;
	--glass-background: #ffffffc2;
	--error-color: #ff4c4c;
	--error-background-color: #ff4c4c1a;
	--error-border-color: #ff4c4c;
}

h1 {
	font-size: 2.3rem;
	font-weight: 700;
}

h2 {
	font-size: 1.8rem;
	font-weight: 700;
}

h3 {
	font-size: 1.4rem;
	font-weight: 700;
}

h4 {
	font-size: 1.2rem;
	font-weight: 700;
}

h5 {
	font-size: 1rem;
	font-weight: 700;
}

p {
	font-size: 1rem;
}
/* Styling the scrollbar */
::-webkit-scrollbar {
	width: 10px; /* Width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--background-color); /* Background color of the scrollbar track */
	border: 1px solid var(--border-color); /* Adds padding around the handle */
	box-sizing: border-box;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background-color: var(--onBackground-color); /* Color of the scrollbar handle */
	border-radius: 8px; /* Rounded corners */
	border: 1px solid var(--onBackground-color); /* Adds padding around the handle */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--border-color); /* Darker color on hover */
	border: 1px solid var(--onBackground-color); /* Adds padding around the handle */
}

/* Reset for input field focus and highlight */
input,
textarea {
	/* Remove default outline on focus */
	font-family:
		'Pretendard Variable',
		Pretendard,
		-apple-system,
		BlinkMacSystemFont,
		system-ui,
		Roboto,
		'Helvetica Neue',
		'Segoe UI',
		'Apple SD Gothic Neo',
		'Noto Sans KR',
		'Malgun Gothic',
		'Apple Color Emoji',
		'Segoe UI Emoji',
		'Segoe UI Symbol',
		sans-serif;
	outline: none;

	/* Remove default focus ring for WebKit/Blink browsers */
	-webkit-appearance: none;

	/* Remove text selection highlight */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Remove default blue highlight when tapping on mobile devices */
	-webkit-tap-highlight-color: transparent;
}

/* Remove blue highlight on Chrome autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* Remove Firefox's focus outline/ring */
input::-moz-focus-inner {
	border: 0;
}

/* Optional: Add your own subtle focus style if needed */
input:focus,
textarea:focus {
	/* You can add a subtle border or box-shadow here if desired */
	/* border: 1px solid #ddd; */
	/* box-shadow: 0 0 3px rgba(0,0,0,0.1); */
}

button {
	/* Remove all background styling */
	background: none;
	background-color: transparent;

	/* Remove borders */
	border: none;
	outline: none;

	/* Reset padding and margin */
	padding: 0;
	margin: 0;

	/* Reset font properties */
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;

	/* Reset cursor */
	cursor: pointer;

	/* Remove any text decoration */
	text-decoration: none;

	/* Remove text alignment */
	text-align: inherit;

	/* Remove border-radius */
	border-radius: 0;

	/* Remove box-shadow */
	box-shadow: none;

	/* Reset line-height */
	line-height: normal;

	/* Disable default appearance */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	/* Remove focus outline/ring */
	-webkit-tap-highlight-color: transparent;
}

/* Reset focus states */
button:focus {
	outline: none;
}

button::-moz-focus-inner {
	border: 0;
}

/* Reset hover and active states */
button:hover,
button:active {
	background-color: transparent;
}

/* Reset disabled state */
button:disabled {
	cursor: default;
	opacity: 1;
}
