body {
  font-family:'Nunito' ;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}

.close-modal {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.place-header {
  display: flex;
  gap: 50px;
}

.place-image {
  display: flex;
  width: auto;
  height: 200px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.comments-section {
  margin-top: 25px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.comment {
  background: #f8f9fa;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 3px solid #00833E;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-user-info {
  display: flex;
  flex-direction: column;
}

.comment-user-name {
  font-weight: 700;
  color: #005A2B;
  font-size: 0.95rem;
}

.comment-user-email {
  color: #666;
  font-size: 0.8rem;
}

.comment-text {
  margin: 10px 0;
  color: #333;
  line-height: 1.5;
}

.comment-date {
  color: #999;
  font-size: 0.8rem;
}

#commentForm textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  resize: vertical;
}

.title {
  color: #005A2B;
  font-weight: bolder;
}

#sendComment {
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  background-color: #00833E;
}

#commentsList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
}