.page-bookmark {
    display: flex;
    justify-content: flex-end;
    margin: 20px;
}

.page-bookmark i {
    color: #ffffff !important;
    background-color: var(--color-blue);
    width: 42px;
    height: 42px;
    padding: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--radius-tiny);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    font-size: 1rem;

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page-bookmark i:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.20);
    cursor: pointer;
}


.hidden {
	visibility: hidden;
}

/* =========================[ 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 — CARD MODERNO E ORGANIZADO
   ========================================================== */

.task-started {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;
    border: 1px solid var(--color-gray-medium);
    padding: 12px 16px;
    border-radius: var(--radius-tiny);

    box-shadow: 0 3px 10px rgba(0,0,0,0.08);

    font-size: 0.9rem;
    color: var(--color-dark);

    max-width: 420px;
}

/* Ícone — Padrão FEX + animação de pulso */
.task-started i {
    background: var(--color-blue);
    color: #fff;

    padding: 7px;
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--radius-tiny);
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);

    animation: pulseIcon 1.4s infinite ease-in-out;
}

/* animação */
@keyframes pulseIcon {
    0%   { transform: scale(1);   opacity: 1; }
    50%  { transform: scale(1.18); opacity: 0.85; }
    100% { transform: scale(1);   opacity: 1; }
}

/* container de textos */
.task-started-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* título "Tarefa em andamento" */
.task-started-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    opacity: 0.8;
}

/* Nome da task */
.task-started .nm-task {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-dark);
}

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