/* Liftlab browser-local notes widget */
#liftlab-notes-widget {
  width: calc(100% - 2rem);
}
@media (min-width: 640px) {
  #liftlab-notes-widget { width: calc(100% - 4rem); }
}
.liftlab-notes-card {
  border-radius: 0.75rem;
  border: 1px solid rgb(148 163 184 / 0.18);
  background: rgb(15 23 42 / 0.45);
  padding: 1rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.2);
}
.liftlab-notes-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.liftlab-notes-header h2 {
  color: rgb(226 232 240);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.liftlab-notes-header span, .liftlab-notes-footer {
  color: rgb(148 163 184);
  font-size: 0.75rem;
}
#liftlab-notes-textarea {
  width: 100%;
  min-height: 7rem;
  resize: vertical;
  border-radius: 0.5rem;
  border: 1px solid rgb(148 163 184 / 0.22);
  background: rgb(2 6 23 / 0.38);
  color: rgb(226 232 240);
  padding: 0.75rem;
  outline: none;
}
#liftlab-notes-textarea:focus {
  border-color: rgb(56 189 248 / 0.65);
  box-shadow: 0 0 0 1px rgb(56 189 248 / 0.3);
}
.liftlab-notes-footer {
  margin-top: 0.4rem;
  text-align: right;
}
