.ps-task-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-task-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  transition: box-shadow 0.2s ease;
}

.ps-task-box:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ps-task-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.ps-task-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ps-status-text {
  font-style: italic;
  opacity: 0.8;
}

.ps-do-task {
  background: #0073aa;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ps-do-task:hover {
  background: #005c8f;
}

.ps-do-task:disabled {
  background: #ccc;
  cursor: not-allowed;
}
