/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background-color: #fff;
}

/* Remove text-decoration on links */
a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* Buttons */
button,
input[type="button"],
input[type="reset"],
/*input[type="submit"] {*/
/*  background-color: transparent;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  padding: 0;*/
/*  outline: none;*/
/*  font-size: inherit;*/
/*}*/

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  /*padding: 0.5em;*/
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #333;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th,
td {
  padding: 0.5em;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

/* Media queries */
@media screen and (min-width: 768px) {
  /* Styles for screens larger than 768px */
}
