ul {
  padding: 0px;
}

.root-container {
  max-width: 1300px;
  margin: 0 auto;
}

.assignment-form {
  max-width: 800px;
}

.assignment-card {
  padding: 12px;
  border: 1px solid rgb(210, 210, 210);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  list-style: none;
}

.assignment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}

.assignment-expand-button {
  display: flex;
  align-items: center;
  column-gap: 10px;

  border: none;
  background: none;
}

.assignment-expand-button[aria-expanded="true"] .chevron-icon {
  rotate: 180deg;
}

.assignment-actions {
  margin-left: auto;
}


.assignment-card:not(:last-child) {
  margin-bottom: 25px;
}



.assignment-chat {
  padding: 10px;
  border-radius: 6px;
  background-color: rgb(248, 248, 248);
  max-width: 700px;
}

.messages {
  max-height: 500px;
  overflow-y: auto;
}

.assignment-chat-form {
  display: grid;
  position: relative;
  gap: 6px;
}

.chat-input {
  padding-right: 50px;
}

.send-message-button {
  position: absolute;
  top: 14px;
  right: 20px;
  border-radius: 10px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.assignment-feedback-block {
  background-color: white;
  padding: 10px;
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #0d6efd;
}

.assignment-feedback-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assignment-feedback-block .message-time {
  margin-right: 0px;
}

.question-icon {
  flex-shrink: 0;
}

.messages {
  display: flex;
  flex-direction: column;
}

.assignment-message {
  max-width: 500px;
  flex-shrink: 0;
}

.assignment-message:not(:last-child) {
  margin-bottom: 12px;
}

.user-message {
  padding: 6px 6px;
  border-radius: 6px;
  color: white;
  width: 300px;
  min-height: 50px;
  background-color: #0d6efd;
  align-self: flex-end;
}

.toastify {
  color: black;
  background: white;
  border-radius: 6px;
}

.assignment-content {
  padding-top: 10px;
}

.assignment-info {
  color: rgb(140, 140, 140);
  font-size: 0.875rem;
}

.status-badge {
  background-color: #212529;
  font-size: 0.835rem;
}

.status-badge[data-status="done"] {
  background-color: #198754;
}

.status-badge[data-status="process"] {
  background-color: #ffc107;
}

.status-badge[data-status="cancelled_by_customer"],
.status-badge[data-status="cancelled_by_supervisor"] {
  background-color: #6c757d;
}

.status-badge[data-status="expired"] {
  background-color: #343a40;
}

.message-time {
  font-size: 0.775rem;
  color: grey;
  margin-right: 6px;
}

.chat-autoscroll-button {
  font-size: 0.875rem;
  padding: 0px;
}
