#messages {
  height: 100%;
  padding: 10px;
  border-radius: 16px;
  overflow: scroll;
  overflow-y: scroll;
  overflow-x: hidden;
}

.message-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.message-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.message-container h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #000000;
}

.message-container p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
  color: #666;
  white-space: normal;
  text-align: start;
  word-wrap: break-word;
}

.message-container .date {
  margin-top: 10px;
  font-size: 0.9em;
  color: #999;
}

#komentar {
  bottom: -0px;
  width: 100%;
  position: static;
  background: #e6e6e6;
  border-radius: 18px;
  box-shadow: 0px -6px 20px rgb(153,153,153);
  height: auto;
  padding-bottom: 0px;
}

