
.layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

#current-datetime {
  font-weight: 600;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 8px;
}
