.room-details-modal-trigger {
  display: inline-block;
  text-decoration: none;
  color: black;
  font-weight: normal;
  font-family: "Marcellus", serif;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.room-details-modal-trigger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: goldenrod;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.3s ease-in-out;
}

.room-details-modal-trigger:hover::after {
  width: 0;
}
