<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-flow: column;
}

.hidden {
  display: none;
}

.show {
  display: block;
}
/* 
container css*/
.container-fluid {
  position: relative;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.container {
  min-height: 80vh;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

/*top-bar css to maintain in place*/
.top-bar {
  width: 100%;
  font-size: 2rem;
}

.top-bar h1 {
  margin: 10px;
}

.clear-start-scene,
.list-found-scene {
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 0.2rem;
}

.inputs-add-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: whitesmoke;
  text-align: center;
}

.btn {
  margin-top: 10px;
  width: 100px;
  font-size: 1.5vh;
}

.list-container {
  margin-top: 2%;
}

#customRange2 {
  width: 200px;
}

#list {
  max-width: 80%;
  max-height: 50vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-left: 20px;
  padding-right: 15px;
  padding-top: 10px;
}

@media (min-width: 768px) {
  #list {
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  #list {
    max-width: 50%;
  }
}

.input-container {
  width: 40%;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
}
/* 
#name-input{
  padding: 8px;
  width: 210px;
  text-align: center;
  
  border: solid 2px black;
} */

#num-item {
  text-align: center;
  width: 100px;
}

/*look of the lable being appended*/
label {
  margin-top: 10px;
  width: 300px;
  height: auto;
  background-color: whitesmoke;
  color: black;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

label p {
  padding: 10px;
}

li:hover {
  transform: translateZ(1);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.2s;
  transition-property: transform;
  transform: scale(1.06);
  cursor: pointer;
}

.list-active-button {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}

.list-active-button input {
  width: 100px;
  padding: 5px;
  border-radius: 5px;
  margin: 5px;
}

.list-active-button input:hover {
  transform: scale(1.1);
}


.total{
  padding: 10px;
  margin-top: 10px;
  background-color: white;
  color: black;
  border-radius: 10px;
}

/* footer {
  clear: both;
  position: relative; 
  z-index: 1; 
  height: -3em; 
  margin-top: 30em; 
} */

footer {
  width: 100%;
  min-height: 10vh;
  position: relative;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 8px;
}

footer i {
  color: whitesmoke;
  transition: all 0.5ms;
}

i:hover {
  transform: scale(1.3);
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}
</pre></body></html>