
.comment {
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border: 2px solid #588bbd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.comment-item {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
}

.text-area {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  font-size: 12px;
  background-color: #f9f9f9;
  box-sizing: border-box;
  resize: none;
}

form .submit-btn {
  width: 100%;
  color: black;
  background-color: #588bbd;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

form .submit-btn:hover {
  background-color: #4a7fa7;
}

.card-body {
  align-items: center;
  border-top: 1px solid #588bbd;
  padding-top: 5px;
}

.page-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.left-side, .right-side {
  width: 50%;
  padding: 10px;
}

.page-divider {
  width: 2px;
  background-color: #588bbd;
}
