/* ==============================================================
   CSS RESET (CÂN BẰNG HIỂN THỊ TRÌNH DUYỆT)
   Dựa trên chuẩn của MeyerWeb. 
   Mục đích: Xóa bỏ các khoảng cách (margin, padding) mặc định 
   của các trình duyệt khác nhau (Chrome, Safari, Firefox...), 
   giúp website hiển thị đồng nhất trên mọi thiết bị.
   ============================================================== */

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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Đưa các thẻ HTML5 mới về dạng khối (block) để các trình duyệt cũ hiểu được */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Cấu hình chiều cao dòng cơ bản */
body {
  line-height: 1;
  font-family:
    "Noto Sans", sans-serif; /* Cài đặt font mặc định cho toàn bộ trang web */
}

/* ================== CẤU HÌNH GOOGLE FONTS (TIỆN ÍCH) ================== */
.roboto-mono {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400; /* Bạn có thể thay đổi tùy ý từ 100 đến 700 */
  font-style: normal;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Bạn có thể thay đổi tùy ý từ 100 đến 900 */
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Xóa bỏ dấu chấm tròn mặc định của danh sách (ul, ol) */
ol,
ul {
  list-style: none;
}

/* Xóa bỏ dấu nháy kép mặc định của thẻ trích dẫn (blockquote, q) */
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Xóa bỏ khoảng hở mặc định giữa các ô trong bảng (table) */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
