:root {
  --green-950: #14372e;
  --green-800: #205143;
  --green-700: #2f6c59;
  --green-100: #e7f0ec;
  --green-50: #f3f7f5;
  --ink: #1f332c;
  --muted: #728079;
  --line: #dde5e1;
  --paper: #ffffff;
  --canvas: #f4f6f5;
  --amber: #a96326;
  --amber-soft: #fff3e5;
  --danger: #a8473f;
  --danger-soft: #fff0ee;
  --shadow: 0 18px 45px rgba(27, 58, 48, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", "Noto Sans Thai", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47, 108, 89, 0.25);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

body:not(.is-leader) .leader-only {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 10px max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--green-950);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.brand strong,
.brand small {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.leader-access-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 39px;
  padding: 0 12px;
  border: 1px solid #d8e1dd;
  border-radius: 9px;
  background: #fff;
  color: var(--green-800);
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.leader-access-button:hover {
  border-color: #a8bdb4;
  background: var(--green-50);
}

.leader-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9aa7a1;
}

body.is-leader .leader-access-button {
  border-color: #9db8ad;
  background: var(--green-100);
}

body.is-leader .leader-status-dot {
  background: var(--green-700);
  box-shadow: 0 0 0 3px rgba(47, 108, 89, 0.12);
}

.brand strong {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.language-switcher {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid #e4e9e6;
  border-radius: 10px;
  background: #f0f3f1;
}

.language-button {
  min-width: 43px;
  padding: 7px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.language-button.is-active {
  background: var(--paper);
  color: var(--green-950);
  box-shadow: 0 2px 8px rgba(33, 66, 55, 0.08);
}

.page {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0 70px;
}

.hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.eyebrow,
.step-label {
  color: #718a81;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.eyebrow {
  margin: 0 0 9px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 55px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-copy > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--green-950);
  background: var(--green-950);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 55, 46, 0.15);
  transition: background 150ms ease, transform 150ms ease;
}

.primary-button:hover {
  background: #0d2d25;
  transform: translateY(-1px);
}

.primary-button > span:first-child {
  font-size: 18px;
  line-height: 0;
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.quick-guide {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.guide-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.guide-item > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 11px;
  font-weight: 850;
}

.guide-item strong,
.guide-item small {
  display: block;
}

.guide-item strong {
  font-size: 11px;
}

.guide-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.guide-arrow {
  color: #b0bbb6;
  font-family: Georgia, serif;
  font-size: 24px;
}

.selector-card,
.workspace {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.selector-card {
  margin-bottom: 18px;
  padding: 22px;
}

.selector-heading,
.workspace-heading,
.schedule-heading,
.modal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.selector-heading {
  margin-bottom: 18px;
}

.selector-heading h2,
.workspace-heading h2,
.modal h2 {
  margin: 3px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.region-tabs {
  display: flex;
  gap: 5px;
  padding: 4px;
  border-radius: 10px;
  background: #f0f3f1;
}

.region-tab {
  padding: 8px 13px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.region-tab.is-active {
  background: #fff;
  color: var(--green-950);
  box-shadow: 0 2px 8px rgba(33, 66, 55, 0.08);
}

.region-tab span {
  margin-left: 4px;
  color: #94a09b;
  font-size: 9px;
}

.website-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.logo-frame {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dbe5e0;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 9px;
  font-weight: 850;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.website-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border 150ms ease, background 150ms ease, transform 150ms ease;
}

.website-button-main {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
}

.website-card-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.website-button-copy {
  min-width: 0;
}

.website-button:hover {
  border-color: #9eb8ad;
  transform: translateY(-1px);
}

.website-button.is-active {
  border-color: var(--green-700);
  background: var(--green-50);
  box-shadow: inset 0 0 0 1px var(--green-700);
}

.website-button strong,
.website-button small {
  display: block;
}

.website-button strong {
  font-size: 12px;
}

.website-button small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.website-off-count {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 25px;
  height: 25px;
  padding: 0 6px;
  border-radius: 999px;
  background: #eef2f0;
  color: #65756e;
  font-size: 9px;
  font-weight: 850;
}

.website-button.is-active .website-off-count {
  background: var(--green-100);
  color: var(--green-800);
}

.workspace {
  overflow: hidden;
}

.workspace-heading {
  padding: 23px 24px;
  border-bottom: 1px solid var(--line);
}

.selected-website {
  display: flex;
  align-items: center;
  gap: 12px;
}

.website-logo {
  width: 45px;
  height: 45px;
  border-radius: 11px;
  background: var(--green-950);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
}

.selected-title-line {
  display: flex;
  align-items: center;
  gap: 9px;
}

.region-badge {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 9px;
  font-weight: 850;
}

.week-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.week-controls button {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.week-controls > button:not(.week-label) {
  width: 36px;
  font-family: Georgia, serif;
  font-size: 21px;
}

.week-controls .week-label {
  min-width: 170px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.team-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #fafbfa;
}

.team-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 53px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.team-tab:last-child {
  border-right: 0;
}

.team-tab::after {
  position: absolute;
  right: 25%;
  bottom: 0;
  left: 25%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  content: "";
}

.team-tab.is-active {
  background: #fff;
  color: var(--green-950);
}

.team-tab.is-active::after {
  background: var(--green-700);
}

.team-count {
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e9eeeb;
  color: #6a7b73;
  font-size: 9px;
}

.team-tab.is-active .team-count {
  background: var(--green-100);
  color: var(--green-700);
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-strip > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 77px;
  padding: 16px 22px;
  background: #fff;
}

.summary-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 15px;
  font-weight: 900;
}

.status-icon {
  background: var(--green-100);
}

.summary-strip p {
  margin: 0;
}

.summary-strip small,
.summary-strip strong {
  display: block;
}

.summary-strip small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
}

.summary-strip strong {
  font-size: 12px;
}

.summary-strip .safe-text {
  color: var(--green-700);
}

.summary-strip .attention-text {
  color: var(--amber);
}

.schedule-heading {
  padding: 22px 24px 14px;
}

.schedule-heading h3 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.schedule-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 10px;
}

.text-button {
  padding: 7px 10px;
  border: 0;
  border-radius: 7px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.schedule-list {
  padding: 0 24px 24px;
}

.day-card {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 77px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
}

.day-card:first-child {
  border-radius: 11px 11px 0 0;
}

.day-card:last-child {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 11px 11px;
}

.day-card.is-today {
  border-left: 3px solid var(--green-700);
  background: #fcfdfc;
}

.day-date {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 76px;
  padding: 12px 15px;
  border-right: 1px solid var(--line);
}

.day-number {
  font-family: Georgia, serif;
  font-size: 24px;
}

.day-date strong,
.day-date small {
  display: block;
}

.day-date strong {
  font-size: 10px;
  text-transform: uppercase;
}

.day-date small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
}

.staff-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 6px 8px 6px 6px;
  border: 1px solid #e1e8e4;
  border-radius: 9px;
  background: #fff;
}

.staff-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 9px;
  font-weight: 850;
}

.staff-chip strong,
.staff-chip small {
  display: block;
}

.staff-chip strong {
  max-width: 160px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.staff-chip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.remove-entry {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #9ba6a1;
  font-size: 14px;
  cursor: pointer;
}

.remove-entry:hover {
  background: var(--danger-soft);
  color: var(--danger);
}

.empty-state {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8a9791;
  font-size: 10px;
}

.empty-state p {
  margin: 0;
}

.empty-state span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 850;
}

.day-status {
  padding: 12px 15px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.status-pill.has-off {
  background: var(--amber-soft);
  color: var(--amber);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 37, 30, 0.48);
  backdrop-filter: blur(4px);
}

.modal {
  width: min(560px, 100%);
  padding: 26px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(14, 39, 31, 0.25);
  animation: modal-in 180ms ease;
}

.modal-heading {
  align-items: flex-start;
  margin-bottom: 23px;
}

.modal-heading p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.close-button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 19px;
  cursor: pointer;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field > span {
  color: #476057;
  font-size: 10px;
  font-weight: 800;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 44px;
  padding: 0 11px;
  border: 1px solid #d8e1dd;
  border-radius: 9px;
  outline: 0;
  background: #fcfdfc;
  color: var(--ink);
  font-size: 12px;
}

.website-picker-field {
  min-width: 0;
}

.website-picker {
  position: relative;
}

.website-picker-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: 100%;
  height: 52px;
  padding: 6px 10px 6px 7px;
  border: 1px solid #d8e1dd;
  border-radius: 9px;
  background: #fcfdfc;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.website-picker-trigger[aria-expanded="true"] {
  border-color: #7ca292;
  box-shadow: 0 0 0 3px rgba(47, 108, 89, 0.1);
}

.picker-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.picker-copy {
  min-width: 0;
}

.picker-copy strong,
.picker-copy small {
  display: block;
}

.picker-copy strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.picker-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.picker-chevron {
  color: #829089;
  font-size: 15px;
}

.website-picker-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 10;
  width: min(330px, 86vw);
  max-height: 310px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid #cfdad5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(22, 52, 42, 0.16);
}

.picker-region-label {
  display: block;
  padding: 9px 8px 5px;
  color: var(--green-950);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.picker-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  padding: 6px 8px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.picker-option:hover,
.picker-option.is-active {
  background: var(--green-50);
}

.picker-option.is-active {
  color: var(--green-800);
}

.picker-option-logo {
  width: 31px;
  height: 31px;
  border-radius: 7px;
}

.picker-option strong,
.picker-option small {
  display: block;
}

.picker-option strong {
  font-size: 10px;
}

.picker-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.picker-check {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
}

.form-field input:focus,
.form-field select:focus {
  border-color: #7ca292;
  box-shadow: 0 0 0 3px rgba(47, 108, 89, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.form-message {
  margin: 14px 0 0;
  padding: 10px 11px;
  border-radius: 8px;
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 10px;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.leader-login-modal {
  width: min(440px, 100%);
}

.confirm-pin-field {
  margin-top: 14px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 44px);
  padding: 12px 15px;
  border-radius: 10px;
  background: var(--green-950);
  color: #fff;
  box-shadow: 0 16px 40px rgba(20, 55, 46, 0.24);
}

.toast span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #72a18f;
  font-size: 10px;
  font-weight: 900;
}

.toast p {
  margin: 0;
  font-size: 10px;
  font-weight: 750;
}

.toast.is-error {
  background: #7f3732;
}

.toast.is-error span {
  background: #c56b63;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .website-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-strip > div {
    padding: 14px;
  }

  .day-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .day-status {
    grid-column: 2;
    padding: 0 16px 12px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .page {
    width: calc(100% - 24px);
    padding-top: 32px;
  }

  .hero {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .primary-button {
    width: 100%;
  }

  .quick-guide {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-arrow {
    display: none;
  }

  .selector-heading,
  .workspace-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .region-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .website-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .week-controls,
  .week-controls .week-label {
    width: 100%;
  }

  .week-controls .week-label {
    min-width: 0;
  }

  .team-tab {
    min-height: 57px;
    padding: 7px;
    flex-direction: column;
    font-size: 9px;
  }

  .summary-strip {
    grid-template-columns: 1fr;
  }

  .summary-strip > div {
    min-height: 64px;
  }

  .schedule-heading {
    align-items: flex-start;
  }

  .schedule-list {
    padding-right: 14px;
    padding-left: 14px;
  }

  .day-card {
    grid-template-columns: 1fr;
  }

  .day-date {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .day-status {
    grid-column: 1;
    padding: 0 16px 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand > span:last-child {
    display: none;
  }

  .language-button {
    min-width: 39px;
    padding-right: 7px;
    padding-left: 7px;
  }

  .website-grid {
    grid-template-columns: 1fr;
  }

  .selector-card {
    padding: 17px;
  }

  .workspace-heading,
  .schedule-heading {
    padding-right: 17px;
    padding-left: 17px;
  }

  .modal {
    padding: 20px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
