* {
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color: #ebbfbf;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  text-align: start;
  background-image: linear-gradient(#230405 50%, black);
}

/* Reservation List */
.history{
  margin: 100px 50px;
}

.history-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 50px;
}

.history h1{
  color: #ebbfbf;
  text-shadow: 1px -1px 0px white;
  font-size: 36px;
}

/* Search */
.searchHistory {
  display: flex;
  align-items: center;
  background-color: lightgrey;
  padding: 10px 16px;
  border-radius: 40px;
  width: 80px;
  height: 15px;
  box-shadow: 2px 2px 4px #230405;
  transition: width 1s;
  flex-wrap: nowrap;
}

.searchHistory:hover{
  width: 200px;
}

.searchIconHistory img {
  width: 18px;
  margin-top: 4px;
  margin-right: 5px;
}

.searchInputHistory input {
  border: none;
  outline: none;
  background-color: transparent;
  margin-bottom: 5px;
  font-weight: bold;
  width: 50px;
  height: 20px;
}

.searchInputHistory input:hover{
  width: 170px;
}

.history-catalogue{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.history-catalogue h2{
  margin-bottom: 10px;
  margin-left: 30px;
}

.history-card-wrapper{
  display: flex;
  height: 80px;
  padding-right: 40px;
  margin-right: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #230405;
  box-shadow: 0px 3px 7px 0px black;
  display: flex;
  align-items: center;
  transition: all 0.3s;

  animation-name: image-zoomIn;
  animation-timing-function: ease;
  animation-timeline: view();
  animation-range-start: 1px;
  animation-range-end: 200px;
}

.history-card{
  position: relative;
  height: 80px;
  width: 1200px;
  padding-left: 40px;
  background-color: transparent;
  display: flex;
  justify-content: start;
  align-items: center;
}

.history-card-wrapper:hover{
  background-color: #470b0e;
  font-weight: bold;
}

.history-card img{
  width: 150px;
  height: 60px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  overflow: hidden;
}

.history-card p{
  margin-left: 15px;
  color: #ebbfbf;
  font-size: 16px;
}

.reserve-button{
  width: 120px;
  height: 40px;
  background-color: #ebbfbf;
  color: #230405;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.reserve-button img{
  position: relative;
  width: 20px;
  height: 20px;
  margin: 5px;
}

.reserve-button:hover{
  background-color: #eb9090;
}

.reserve-button img:hover {
  width: 20px;
  height: 20px;
  margin: 5px;
  transform: none;
  box-shadow: none;
}

.reserved{
  background-color: transparent;
  color: #ebbfbf;
  border: #ebbfbf solid;
}
/* End of Reservation List */

/* Navigation Footer */
footer {
  margin-top: 120px;
}

.nav-footer {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background-color: black;
  padding: 5px;
  animation-name: none;
}

.nav-icon img {
  width: 25px;
  height: 25px;
  margin: 10px;
  flex-shrink: 0;
  opacity: 1;
  scale: 1;
  transition: all 0.7s ease;
  animation-name: none;
}

.nav-icon img[target="reservationIcon"] {
  width: 35px;
  height: 35px;
}

.nav-icon img:hover {
  width: 35px;
  height: 35px;
  margin: 5px;
}

.nav-icon img[target="reservationIcon"]:hover {
  width: 45px;
  height: 45px;
}
/* End of Navigation Footer */

/* Back To Top - Go To Bottom */
.page-button {
  position: fixed;
  bottom: 100px;
  right: 80px;
}

.back-to-top button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: rgba(92, 91, 91, 0.3);
  color: white;
  font-size: 20px;
  font-family: monospace;
  transform: rotate(-90deg);
  margin-bottom: 10px;
}

.back-to-top[target="back-to-bottom"] {
  transform: rotate(180deg);
}

.back-to-top button:hover {
  text-shadow: 1px -1px 5px #ebbfbf;
}