:root {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #242429;
  background: #fff;
  font-synthesis: none;
  font-size: 16px;
  --blue: #0068d8;
  --muted: #68686f;
  --line: #e8e8ed;
  --accent: #0071e3;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
button:disabled {
  opacity: 0.35;
  cursor: default;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #0071e3;
  outline-offset: 3px;
}
button {
  border: 0;
  background: transparent;
}
input,
select,
textarea {
  border: 1px solid #d8d8df;
  border-radius: 9px;
  padding: 10px 12px;
  background: white;
  color: #242429;
  min-width: 0;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}
textarea {
  resize: vertical;
  min-height: 85px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: 36px;
  letter-spacing: -1.3px;
  margin-bottom: 8px;
  line-height: 1.15;
}
h2 {
  font-size: 20px;
  letter-spacing: -0.3px;
}
h3 {
  font-size: 17px;
}
small,
.muted {
  color: var(--muted);
}
small {
  font-size: 13px;
}
svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
}
.shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  background: #f5f5f7;
  border-right: 1px solid var(--line);
  padding: 36px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  margin-bottom: 40px;
}
.brand svg {
  color: var(--blue);
  width: 28px;
  height: 28px;
}
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 12px;
  border-radius: 9px;
  font-weight: 500;
  margin: 3px 0;
  min-height: 45px;
}
.nav-item.active {
  background: #e4e8ef;
  color: #005bbd;
}
.nav-item:hover {
  background: #eaeaef;
}
.nav-count {
  margin-left: auto;
  font-size: 14px;
  color: var(--muted);
}
.nav-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 650;
  color: var(--muted);
  margin: 32px 12px 10px;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 30px;
}
.local-label {
  font-size: 12px;
  color: var(--muted);
  padding: 16px 12px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.local-label svg {
  width: 15px;
}
.area-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--area);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-item .area-icon {
  width: 29px;
  height: 29px;
  border-radius: 8px;
}
.nav-item .area-icon svg {
  width: 17px;
  height: 17px;
}
.main {
  max-width: 1400px;
  width: 100%;
  padding: 48px 60px 70px;
  margin: 0 auto;
}
.topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 38px;
}
.eyebrow {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 9px;
  min-height: 42px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.primary {
  background: var(--blue);
  color: white;
}
.primary:hover {
  background: #0058bd;
}
.secondary {
  background: #f0f0f4;
}
.subtle {
  color: var(--blue);
}
.danger {
  color: #bd2532;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px;
  min-width: 38px;
  min-height: 38px;
}
.icon-button:hover {
  background: #eeeef3;
}
.actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 32px 0 44px;
}
.area-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  position: relative;
  transition: box-shadow 0.15s;
  background: #fff;
  overflow: hidden;
}
.area-card:hover {
  box-shadow: 0 6px 22px #00000008;
}
.card-open {
  width: 100%;
  text-align: left;
  padding: 24px;
  display: block;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.card-top .area-icon {
  height: 46px;
  width: 46px;
  border-radius: 12px;
}
.card-number {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -1px;
}
.card-title {
  font-size: 21px;
  font-weight: 650;
  margin-bottom: 6px;
}
.card-meta {
  font-size: 14px;
  color: var(--muted);
}
.card-menu {
  position: absolute;
  right: 15px;
  bottom: 22px;
}
.quick-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.quick-links button {
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
}
.quick-links svg {
  width: 19px;
  color: var(--blue);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.section-heading h2 {
  margin: 0;
}
.preview-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.preview-row .time {
  width: 52px;
  font-size: 14px;
  color: var(--muted);
}
.preview-row .bar {
  width: 3px;
  height: 35px;
  border-radius: 2px;
  background: var(--area);
}
.preview-row .preview-title {
  flex: 1;
  text-align: left;
  font-weight: 500;
}
.preview-row small {
  display: block;
  margin-top: 5px;
}
.intro-note {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.intro-note svg {
  width: 17px;
}
.mobile-back {
  display: none;
}
.view-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.segmented {
  display: inline-flex;
  background: #f0f0f4;
  border-radius: 9px;
  padding: 3px;
  gap: 3px;
}
.segmented button {
  padding: 8px 22px;
  font-size: 14px;
  border-radius: 7px;
}
.segmented button.selected {
  background: white;
  box-shadow: 0 1px 4px #00000016;
  font-weight: 600;
}
.task-section {
  margin: 30px 0;
}
.task-section header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.task-section h2 {
  margin: 0;
  color: var(--accent);
  font-size: 20px;
  flex: 1;
}
.task-section header .count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 9px;
}
.task-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.check {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  border: 1.5px solid #a6a6af;
  border-radius: 50%;
  padding: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check.checked {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.check svg {
  width: 14px;
}
.task-body {
  flex: 1;
  min-width: 0;
}
.task-title {
  padding: 0;
  text-align: left;
  line-height: 1.5;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.task-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}
.task-meta svg {
  width: 14px;
  height: 14px;
}
.task-meta .priority {
  color: #af4500;
}
.task-row.done .task-title {
  text-decoration: line-through;
  color: var(--muted);
}
.subtasks {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.subtasks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.quick-add {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}
.quick-add svg {
  color: var(--accent);
  width: 23px;
}
.quick-add input {
  border: 0;
  flex: 1;
  padding: 8px 0;
  min-width: 0;
  background: transparent;
}
.quick-add button {
  color: var(--accent);
}
details.completed {
  margin-top: 35px;
  color: var(--muted);
}
summary {
  cursor: pointer;
  padding: 12px 0;
  font-size: 14px;
}
.empty {
  text-align: center;
  padding: 60px 18px;
  color: var(--muted);
}
.empty svg {
  width: 40px;
  height: 40px;
  color: #a5a5ad;
  margin-bottom: 16px;
}
.empty h2 {
  color: #44444c;
  font-size: 20px;
  margin-bottom: 9px;
}
.empty p {
  font-size: 14px;
  line-height: 1.6;
}
.calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.calendar-controls input {
  width: 152px;
  font-size: 14px;
  padding: 8px;
}
.calendar-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: auto;
  max-height: 680px;
  overscroll-behavior: contain;
}
.calendar {
  min-width: 620px;
  position: relative;
}
.calendar.day {
  min-width: 0;
}
.calendar-head {
  display: grid;
  grid-template-columns: 54px repeat(var(--days), minmax(0, 1fr));
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.day-label {
  text-align: center;
  padding: 12px 3px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.day-label strong {
  display: block;
  font-size: 20px;
  color: #333;
  margin-top: 4px;
}
.day-label.today strong {
  color: var(--blue);
}
.calendar-body {
  display: grid;
  grid-template-columns: 54px repeat(var(--days), minmax(0, 1fr));
  position: relative;
  height: 1440px;
}
.hours {
  position: relative;
  font-size: 12px;
  color: var(--muted);
}
.hours span {
  position: absolute;
  right: 8px;
  transform: translateY(-50%);
}
.day-column {
  position: relative;
  border-left: 1px solid var(--line);
  height: 1440px;
}
.slot {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  border-radius: 0;
  border-top: 1px solid #eeeef2;
  padding: 0;
}
.slot:nth-child(even) {
  border-top: 1px dotted #f0f0f4;
}
.slot:hover {
  background: #f1f7ff;
}
.event {
  position: absolute;
  border-left: 3px solid var(--area);
  border-radius: 5px;
  background: color-mix(in srgb, var(--area) 12%, white);
  color: #26262b;
  overflow: hidden;
  z-index: 2;
  min-height: 15px;
  box-shadow: 0 1px 3px #0000000b;
  touch-action: auto;
}
.event-button {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 4px 5px;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
}
.event-button strong {
  font-weight: 600;
  display: block;
}
.event-button small {
  font-size: 12px;
  display: block;
  color: #484851;
}
.event.conflict {
  outline: 1px dashed #b74817;
}
.resize {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7px;
  cursor: ns-resize;
  background: #00000009;
  touch-action: none;
}
.calendar-legend {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.legend-area {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-area i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--area);
}
.unscheduled {
  margin-top: 28px;
}
.banner {
  padding: 12px 15px;
  background: #fff6e9;
  border-radius: 9px;
  color: #865000;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  width: min(560px, calc(100% - 28px));
  padding: 0;
  box-shadow: 0 25px 100px #0003;
  max-height: 90dvh;
  color: #242429;
}
dialog::backdrop {
  background: #14142166;
  backdrop-filter: blur(3px);
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px 12px;
}
.dialog-head h2 {
  margin: 0;
}
.dialog-body {
  padding: 8px 25px 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
}
.field.full {
  grid-column: 1/-1;
}
.field > span {
  font-weight: 550;
}
.field-help {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 18px 25px;
  flex-wrap: wrap;
}
.dialog-footer .danger {
  margin-right: auto;
}
.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-option {
  height: 31px;
  width: 31px;
  border-radius: 50%;
  background: var(--area);
  border: 3px solid white;
  outline: 1px solid transparent;
}
.color-option[aria-pressed="true"] {
  outline: 2px solid var(--area);
}
.icon-options {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.icon-option {
  padding: 10px;
  border-radius: 9px;
  background: #f1f1f5;
}
.icon-option[aria-pressed="true"] {
  background: #dfedff;
  color: var(--blue);
  outline: 1px solid var(--blue);
}
.manage-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.manage-row .name {
  flex: 1;
  overflow-wrap: anywhere;
}
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.error {
  color: #bd2532;
  font-size: 14px;
  line-height: 1.5;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #242429;
  color: white;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 14px;
  z-index: 100;
  box-shadow: 0 5px 20px #0002;
  display: none;
  max-width: 90vw;
}
#toast.visible {
  display: block;
}
.home-content {
  max-width: 900px;
  margin: 0 auto;
}
.overview-list .task-meta {
  margin-bottom: 3px;
}
.header-icon {
  margin-bottom: 18px;
}
.schedule-hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1450px) {
  .main {
    padding-top: 65px;
  }
  .cards {
    gap: 24px;
  }
  .card-open {
    padding: 28px;
  }
}
@media (max-width: 1100px) {
  .main {
    padding: 35px 30px;
  }
  .shell {
    grid-template-columns: 225px minmax(0, 1fr);
  }
  .sidebar {
    padding: 30px 14px;
  }
}
@media (max-width: 700px) {
  .shell {
    display: block;
  }
  .sidebar {
    display: none;
  }
  .main {
    padding: 28px 21px 55px;
  }
  .topline {
    margin-bottom: 28px;
    align-items: flex-start;
  }
  h1 {
    font-size: 32px;
  }
  .topline > .actions .button {
    padding: 10px;
  }
  .cards {
    gap: 12px;
    margin-top: 25px;
  }
  .card-open {
    padding: 19px;
  }
  .card-top {
    margin-bottom: 22px;
  }
  .card-number {
    font-size: 30px;
  }
  .card-title {
    font-size: 19px;
  }
  .card-meta {
    font-size: 12px;
  }
  .card-menu {
    bottom: 13px;
    right: 8px;
  }
  .quick-links {
    gap: 8px;
    flex-wrap: wrap;
  }
  .quick-links button {
    padding: 10px 12px;
  }
  .mobile-back {
    display: flex;
    padding: 0;
    margin-bottom: 22px;
    color: var(--blue);
    align-items: center;
    gap: 4px;
    font-size: 14px;
  }
  .topline .eyebrow {
    font-size: 13px;
  }
  .view-toolbar {
    margin-bottom: 22px;
  }
  .segmented button {
    padding: 8px 17px;
  }
  .form-grid {
    gap: 14px;
  }
  .dialog-head {
    padding: 20px 20px 12px;
  }
  .dialog-body {
    padding: 8px 20px 22px;
  }
  .dialog-footer {
    padding: 16px 20px;
  }
  .calendar-wrap {
    max-height: 65dvh;
  }
  .calendar-controls {
    gap: 8px;
  }
  .calendar-controls .actions {
    gap: 1px;
  }
  .calendar-controls input {
    width: 140px;
  }
  .preview-row {
    gap: 10px;
  }
  .preview-row .preview-title {
    font-size: 14px;
  }
  .intro-note {
    align-items: flex-start;
    font-size: 13px;
  }
  .header-icon {
    margin-bottom: 12px;
  }
  .header-icon .area-icon {
    width: 38px;
    height: 38px;
  }
  .event-button {
    font-size: 13px;
  }
  .event-button small {
    font-size: 12px;
  }
  .schedule-hint .desktop-hint {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* MySpace: superfícies escuras, tipografia de sistema e cores por área. */
:root {
  color-scheme: dark;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Helvetica, Arial, sans-serif;
  background: #141416;
  color: #f2f2f5;
  --blue: #78b3ff;
  --muted: #a0a0ab;
  --line: #303034;
  --accent: #64a8ff;
}
body {
  background: #141416;
}
input,
select,
textarea {
  background: #242427;
  color: #f2f2f5;
  border-color: #424249;
}
input::placeholder,
textarea::placeholder {
  color: #9c9ca7;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline-color: #91c2ff;
}
.sidebar {
  background: #1b1b1e;
  border-right-color: #2a2a2f;
}
.brand {
  color: #f5f5f7;
  font-weight: 650;
  letter-spacing: -0.8px;
}
.brand-mark {
  display: flex;
  background: #2d2d33;
  border: 1px solid #42424a;
  border-radius: 10px;
  padding: 7px;
}
.brand .brand-mark svg {
  color: #e3e3e9;
  width: 23px;
  height: 23px;
}
.nav-item.active {
  background: #323238;
  color: #fff;
}
.nav-item:hover {
  background: #2b2b30;
}
.nav-item > .area-icon {
  background: color-mix(in srgb, var(--area) 15%, transparent);
  color: var(--area);
}
.area-icon {
  color: var(--area);
  background: color-mix(in srgb, var(--area) 14%, transparent);
}
.nav-label {
  color: #91919e;
}
.main {
  background: #141416;
}
.primary {
  background: #76adfa;
  color: #101827;
}
.primary:hover {
  background: #94bfff;
}
.secondary {
  background: #333339;
  color: #ececf1;
}
.secondary:hover {
  background: #414149;
}
.subtle {
  color: #91bcfa;
}
.danger {
  color: #ff9b9b;
}
.icon-button:hover {
  background: #34343b;
}
.area-card {
  background: #202023;
  border-color: #323238;
  border-radius: 16px;
}
.area-card:hover {
  background: #26262b;
  box-shadow: none;
  border-color: #484851;
}
.card-number {
  color: #f0f0f4;
  font-weight: 600;
}
.card-top .area-icon {
  width: 47px;
  height: 47px;
}
.card-top .area-icon svg {
  width: 25px;
  height: 25px;
}
.card-title {
  font-weight: 600;
}
.card-menu {
  color: #9a9aa5;
}
.quick-links button {
  background: #202023;
  border-color: #333339;
}
.quick-links button:hover {
  background: #2d2d33;
}
.quick-links svg {
  color: #a3bdea;
}
.preview-row .bar {
  height: 33px;
}
.preview-title:hover {
  color: #bbd8ff;
}
.segmented {
  background: #252529;
}
.segmented button.selected {
  background: #45454c;
  color: #fff;
  box-shadow: 0 1px 4px #0005;
}
.check {
  border-color: #73737f;
}
.check.checked {
  color: #16161a;
}
.task-meta .priority {
  color: #efb276;
}
.empty h2 {
  color: #dedee6;
}
.empty svg {
  color: #777784;
}
.calendar-head {
  background: #202024;
}
.day-label strong {
  color: #e9e9f0;
}
.day-label.today strong {
  color: #88bbff;
}
.day-label.today {
  background: #293444;
}
.slot {
  border-top-color: #323237;
}
.slot:nth-child(even) {
  border-top-color: #29292e;
}
.slot:hover {
  background: #263448;
}
.event {
  background: color-mix(in srgb, var(--area) 20%, #1b1b20);
  color: #f3f3f8;
  border-left-color: var(--area);
}
.event-button small {
  color: #d0d0dd;
}
.event.conflict {
  outline-color: #f1ae73;
}
.resize {
  background: #ffffff15;
}
.banner {
  background: #382d20;
  color: #ffd093;
}
.calendar-wrap {
  border-color: #37373f;
}
.resize:hover {
  background: #ffffff40;
}
dialog {
  background: #202024;
  color: #f2f2f5;
  border-color: #44444d;
}
dialog::backdrop {
  background: #0009;
}
.color-option {
  border-color: #202024;
}
.icon-option {
  background: #34343b;
  color: #ccc;
}
.icon-option[aria-pressed="true"] {
  background: #344762;
  color: #b1d2ff;
  outline-color: #82b8ff;
}
.error {
  color: #ffabab;
}
#form-error:empty {
  display: none;
}
#toast {
  background: #e6e6ed;
  color: #181820;
  box-shadow: 0 5px 25px #0005;
}
.mobile-brand {
  display: none;
}
.topline p {
  margin-bottom: 0;
  line-height: 1.5;
}
.card-title,
.nav-item > span:not(.area-icon),
h1 {
  overflow-wrap: anywhere;
}
.sidebar {
  overflow-y: auto;
}
.button:active {
  transform: translateY(1px);
}
@media (max-width: 700px) {
  .mobile-brand {
    display: block;
    font-size: 18px;
    font-weight: 650;
    color: #b9b9c5;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
  }
  .cards {
    margin-bottom: 34px;
  }
  .topline {
    gap: 10px;
  }
  .topline > .button {
    font-size: 13px;
    padding: 10px;
    gap: 5px;
  }
  .topline > .button svg {
    width: 18px;
  }
  .card-open {
    padding: 17px;
  }
  .card-number {
    font-size: 28px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-top .area-icon {
    width: 40px;
    height: 40px;
  }
  .card-menu {
    bottom: 9px;
    right: 4px;
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    width: 100%;
  }
  .card-meta {
    max-width: 100px;
    line-height: 1.5;
  }
  .main {
    padding-bottom: 45px;
  }
  .quick-add .button {
    padding: 10px 7px;
  }
  .calendar-controls .actions {
    flex-wrap: nowrap;
  }
  .manage-row {
    gap: 5px;
  }
  .manage-row .icon-button {
    padding: 6px;
    min-width: 32px;
  }
  .manage-row .area-icon {
    width: 30px;
    height: 30px;
  }
  .dialog-head,
  .dialog-body,
  .dialog-footer {
    padding-left: 17px;
    padding-right: 17px;
  }
}
