/* item-avaliado-respostas.css */
.dashboard-wrapper {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  font-family: 'Segoe UI', sans-serif;
  gap: 2rem;
  max-width: 1300px;
  margin: 1rem auto;
}

.left-column {
  width: 30%;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.section-id {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.section-recomendacao {
  font-size: 12px;
  color: #444;
  margin-bottom: 20px;
}

.btn-invoice {
  background: #eef4ff;
  color: #444;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

.center-column {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.circle-progress,
.circle-upload {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid #dcdfff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle-progress {
  border-top: 6px solid #6942E2;
}

.circle-percentage {
  font-size: 28px;
  font-weight: bold;
}

.circle-percentage span {
  font-size: 16px;
  color: #888;
}

.circle-label {
  font-size: 14px;
  text-align: center;
  color: #666;
  margin-top: 6px;
}

.upload-icon {
  font-size: 20px;
}

.upload-count {
  font-weight: bold;
  font-size: 18px;
  margin-top: 4px;
}

.upload-label {
  font-size: 13px;
  color: #666;
}

.right-column {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message-box {
  display: flex;
  background: #f5f8fd;
  padding: 12px 14px;
  border-radius: 12px;
  align-items: center;
}
.message-box .message-content .field__label,
.message-box .message-content .field__item{
  font-size: 12px;
}

.avatar {
  background: #dee7f9;
  color: #555;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  /*margin-right: 10px;*/
}

.message-content {
  font-size: 14px;
  color: #333;
}
.dashboard-bottom {
  display: flex;
  gap: 2rem;
  margin-top: 40px;
}

.timesheet-activity {
  width: 30%;
}

.timesheet-activity .activity-item {
  background: #f5f7ff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.activity-item .time {
  font-weight: bold;
  margin-bottom: 4px;
}

.activity-item .desc {
  font-size: 14px;
  margin-bottom: 4px;
}

.timeline-activity {
  flex-grow: 1;
}

.timeline {
  display: flex;
  gap: 1.5rem;
}

.day-column {
  flex: 1;
}

.day-column span {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.event {
  background: #f0f2f7;
  padding: 6px 10px;
  margin-bottom: 6px;
  border-radius: 8px;
  font-size: 13px;
}

.event.red {
  background: #ffe5e5;
  color: #c30000;
}

.event.blue {
  background: #e3eaff;
  color: #0045b3;
}

.event.light {
  background: #f0f2f7;
}
.timeline-semanal {
  display: flex;
  gap: 1.5rem;
  margin-top: 20px;
}

.dia-coluna {
  flex: 1;
}

.dia-coluna strong {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.evento {
  background: #f2f4f8;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.evento.red {
  background: #ffe5e5;
  color: #b30000;
}

.evento.blue {
  background: #e3eaff;
  color: #0033cc;
}
