/* Global reset: μηδενίζει default margin & padding του browser, κάνει το box-sizing border-box ώστε width/height να περιλαμβάνουν padding & border */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Images: δεν ξεπερνούν ποτέ το container τους, display:block για να μην υπάρχει extra whitespace (baseline gap από inline elements) */
img {
  max-width: 100%;
  display: block;
}

/* Form elements: κληρονομούν τη γραμματοσειρά από το parent, αποφεύγεται το default browser font στα inputs/buttons */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Light theme: tint scrollbars + form autofill so the cream world stays intact */
html {
  color-scheme: light;
  scrollbar-color: #A8B27E #EAE6D8;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #333D21;
  caret-color: #333D21;
  transition: background-color 9999s ease-in-out 0s;
}
