body {
  background-color: #efefef;
  height: 100%;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

#container {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.app {
  background-color: lightblue;
  width: 100%;
  height: 100%;
}

.black-bg {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999998;
}

.prop-container {
  width: 800px;
  height: 800px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.prop-content {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.prop-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.propImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 1s ease-in-out;
  border-radius: 10px;
}

.propImage:not(.active) img {
  opacity: 0;
  border-radius: 10px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.prop-body {
  margin-top: 20px;
  height: 20%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
}

.prop-body .prop-detail:last-child {
  margin-bottom: 20px;
}

.prop-body .prop-detail h4 {
  margin: 20px 0 10px;
}

.prop-body .prop-detail p {
  margin: 0;
}

.prop-foot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-foot button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #F4B3C2;
  color: white;
  border: none;
  cursor: pointer;
}

.prop-foot button:hover {
  background-color: rgba(244, 179, 194, 0.9);
}
