.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

body {
  background: #000 !important;
  /* background: linear-gradient(180deg, rgb(255, 0, 0), rgb(0, 0, 0, 1) 100%); */
  background-attachment: fixed; /* parallax effect */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

input:focus {
  outline: none;
}

.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.second-nav {
  display: flex;
  margin-left: 10em;
}

.left-nav {
  display: flex;
  flex-direction: row;
}

.content-container {
  width: 100%;
  padding: 0 2rem;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.profile-img-div {
  max-width: 540px;
  width: 100%;
  text-align: center;
}

.detail-container.prompt-regular {
  max-width: 700px;
  width: auto;
}

.profile-img-div img#profile {
 max-width: 420px;
 min-width: 350px;
 width: 100%;
}

.share-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewby-div, .share-div {  
  width: 100px;
}

.detail-info #reviews-text {
  font-size: 1.125rem;
}

.share-div {
  display: inline-block;
  position: relative;
}

#alert-message {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 130%; /* ปรับค่าเพื่อให้สามเหลี่ยมชี้ไปที่ปุ่ม */
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  white-space: nowrap;
}

#alert-message::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.reviewby-div {
  display: flex;
  align-items: center;
}

.reviewby-div #blogby, .reviewby-div #reviewby {
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #D4B260;
  margin-bottom: 0;
}

.share-div .share-button {
  padding: 7px 1.5rem;
  border-radius: 20px;
  border: 1px #000 solid;
  background-color: #FF8300;
}

.share-div .share-button:hover {
  border: 1px #fff solid;
}

.gallery-img-container {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.gallery-card img {
  max-width: 480px;
  min-width: 350px;
  width: 100%;
}