body {
  background-color: #e9fcf7;
}

.container {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-left: 600px;
  padding-right: 600px;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  gap: 50px;
}

.center-text {
  text-align: center;
}

.thumbs-outline {
  background: none;
  border: none;
  outline: none;
  transform: scale(1.5);
}

.thumbs-outline:hover {
  transform: scale(1.6);
  color: #0d6efd;
}

.thumbs {
  fill: red;
  display: flex;
  justify-content: end;
}

.text-thumbs {
  padding: 20px;
  border: 2px solid #6d6d6d;
  border-radius: 20px;
  background-color: #e9e9e9;
}

.bi-hand-thumbs-up-fill {
  color: #009b34;
}

.bi-hand-thumbs-down-fill {
  color: #c90014;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 400px;
}

.modal-box textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #6d6d6d;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}