/* ====================<< Mode >>==================== */
/* ========== CSS Reset Start (Meyer + Custom) ========== */
/* --- Reset default styles for common HTML elements --- */
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;
}

/* --- Ensure HTML5 elements are block-level --- */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* --- Set base line-height for body --- */
body {
  line-height: 1;
}

/* --- Remove default list styling --- */
ol, ul {
  list-style: none;
}

/* --- Remove default quote styling --- */
blockquote, q {
  quotes: none;
}

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

/* --- Reset table spacing --- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========== CSS Reset End ========== */
/* ========== Basic Utility Styles ========== */
/* --- Set font-family for body --- */
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

/* --- Remove underline and default link color --- */
a {
  text-decoration: none;
  color: inherit;
}

/* --- Responsive image scaling --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Remove form element default styles --- */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Show pointer cursor on buttons --- */
button {
  cursor: pointer;
}

/* --- Use border-box for all elements to include padding/border in size --- */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ========== Debug Tools (for development only) ========== */
/* --- Add 1px outline to all elements for layout debugging --- */
/* ====================<< Mode >>==================== */
body {
  background-color: #f5f5f5;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.wrap {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

h1 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

@media (max-width: 500px) {
  h1 {
    font-size: 30px;
    font-weight: bold;
  }
}
input.text {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 16px;
}

input.save,
input.clear {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  margin: 5px 0;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input.save {
  background-color: #4caf50;
  color: white;
  margin-right: 10px;
}

input.save:hover {
  background-color: #45a049;
}

input.clear {
  background-color: #f44336;
  color: white;
}

input.clear:hover {
  background-color: #d32f2f;
}

ul.list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

ul.list li {
  background-color: #f9f9f9;
  margin-bottom: 10px;
  padding: 12px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

li label {
  flex: 1;
  margin-left: 10px;
  font-size: 16px;
  color: #333;
}

input.check {
  transform: scale(1.2);
  cursor: pointer;
}

input.delete {
  background-color: #ff9800;
  border: none;
  border-radius: 6px;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}

input.delete:hover {
  background-color: #e68900;
}/*# sourceMappingURL=all.css.map */