* {
  margin: 0;
  padding: 0;
box-sizing: border-box;
  outline: 1px solid red !important; 
}

html, body {
  width: 100%;
}

body {
  background-color: #ddd;
  background-image: url("/img/background-light-paper.png"); 
  margin-top: 15px;
  max-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top; 
}

h1 {
  filter: grayscale(80%) opacity(100%);
  font-size: 1.5em;
  color: black;
  /*mix-blend-mode: difference;   this gives the opposite color */
  letter-spacing: 0px; 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p {
  color: black; 
  line-height: 1.2em;
}

a {
  color: blue;
}

a:hover {
  color: rgb(0, 255, 85);
}

input {
  height: 35px;
  width: 250px;
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  padding-left: 10px;
  font-family: "Gill Sans", "Gill Sans MT", monospace, "Courier New", Courier;
  background-color: grey;
  color: white;
  caret-color: GREY;
}

input:active {
  border: 4px greenyellow;
  background-color: #555;
  color: white;
  caret-color:#00ff00;
}

input:focus {
  border: 4px greenyellow;
  background-color: #555;
  color: white;
  caret-color:#00ff00;
}

input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    border: 1px greenyellow;
  color: #ccc; /* Change to your desired color */
  opacity: 0.5;      /* Fixes faded appearance in Firefox */
}

li {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.candygoodness {
  width: 95%;
  background-color: #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  max-width: 900px;
  min-width: 420px;
  padding: 15px;
  border: 1px white;
  border-radius: 15px;
}

.candybar {} /* used for warnings that pop-up! */

.header {
  height: 80px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.header-title {
  width: 290px;
  min-width: 280px;
  height: 30px;
  display: flex;
}

.header-buttons {
  width: 50px;
  min-width: 45px;
  height: 30px;
  display: flex;
}

.header-search {
  width: 380px;
  min-width: 375px;
  height: 40px;
  display: flex;
  flex-direction: column;
}

.image-headerbutton {
  height: 18px;
  background-color: #ddd;
  opacity: 0.5; 
}

.content {
  min-height: fit-content;
  margin-bottom: 50px;
  min-width: 400px;
  width: 100%;
}

.breadcrumb {
  margin-bottom: 10px;
  min-width: 400px;
  width: 420px;
  font-size: 0.7em;
}

.contentimg {
  object-fit: cover;
  width: 100%; 
  aspect-ratio: 16 / 9; 
  background-color: #333;
}



.middlewholebody {}
.middleonepane {}
.middletwopane {}
.middlethrpane {}

.footer {
  font-size: 0.7em;
  display: flex;
  margin-top: 50px;
  margin-bottom: 30px;
  align-items: top; 
}

.footer-left {
  align-items: flex-start;
  align-self: left;
  text-align: left;
  justify-content: start;
  min-width: 350px;
  align-self: start;
  width: 375px;
  flex-wrap: nowrap;
}

.footer-right {
  width: 375px;
  justify-content: flex-end;
  min-width: 350px;
  flex-wrap: wrap;
}

.imgicons {
  filter: grayscale(100%);
  height: 24px;
  padding-right: 10px;
  opacity: 0.7; 
}

.horizontal-list {
    display: flex; /* Activates Flexbox on the parent <ul> */
    list-style-type: none; /* Removes default bullet points */
       width: 350px;
    margin: 0; 
        float: left;
}

.horizontal-list li {
    /* Optional: Add styling to the list items themselves */
    list-style-type: none; /* Removes bullets */
    padding-right: 10px;
    margin: 0;
}


.lightbar {
  width: fit-content;
}

.selectable-div {
  border: 0;
  outline: none;
}

.selectable-div.selected {
  border: 0;
  left: 10px;
  right: 10px;
  outline: none;
  background-color: #00ff00;
}