.page-bookmark{
    text-align: right; margin: 20px;
}


/* =========================[ TASK CHECK PANEL ]========================= */
.task-check {
  border-radius: 2px;
  padding: 14px;
  background: #fff;
  margin-bottom: 16px;
}

.task-check__title {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin: 0 0 10px 0;
}

.task-check__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .task-check__metrics {
    grid-template-columns: 1fr 1fr;
  }
}

.task-check__metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px dashed #eaeaea;
  border-radius: 2px;
  background: #fafafa;
}

.task-check__metric-label {
  font-size: 12px;
  color: #777;
  flex: 0 0 auto;
}

.task-check__metric-value {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* linha de separação opcional antes do DataList */
.task-check__divider {
  height: 1px;
  background: #eee;
  margin: 10px 0 12px;
}


/* =========================================
   TASK STARTED
   ========================================= */
.task-started {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-gray-light);
  border: 1px solid var(--color-border-default);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.task-started i {
  font-size: 1rem;
}

.task-started .nm-task {
  font-weight: 600;
}

.task-started.hidden {
  display: none !important;
}


.hidden {
	visibility: hidden;
}