:root {
  color-scheme: light;
  --bg: #eceef3;
  --card-bg: #f8f9fb;
  --border: #d4d8e3;
  --primary: #2f45b9;
  --text: #1f2737;
  --danger: #c8262f;
  --success: #1f7a43;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.app {
  /* Wide enough for Session Calendar columns without horizontal scroll on typical desktops */
  max-width: min(1440px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 18px 10px 40px;
}

.hidden {
  display: none;
}

.screen-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 58px);
}

.screen-login.hidden {
  display: none;
}

#screen-force-password .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#screen-force-password .actions #force-logout-btn {
  margin-left: auto;
}

.login-card {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

.login-logo {
  display: block;
  margin: 0 auto 20px;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.login-title {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 18px;
  color: var(--primary);
}

.login-help {
  margin: 0 0 16px;
  color: #4c5670;
}

.login-card label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 500;
}

.login-card input {
  width: 100%;
  border: 1px solid #c5cada;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  color: #1f2737;
}

#screen-account label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 500;
}

#screen-account input {
  width: 100%;
  border: 1px solid #c5cada;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  color: #1f2737;
}

.app-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.app-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-header h1 {
  font-size: 1.45rem;
  margin: 0;
}

.logged-in-user {
  font-size: 0.92rem;
  font-weight: 500;
  color: #3f4f74;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.toggle-btn {
  border: 1px solid #b4bbcf;
  background: #ffffff;
  color: #2a3457;
  border-radius: 6px;
  padding: 9px 12px;
  cursor: pointer;
}

.toggle-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  margin: 12px 0;
}

.intro-card {
  border-top: 8px solid var(--primary);
}

h2,
h3 {
  margin: 0 0 14px;
  font-weight: 500;
}

.required-note,
.required-mark {
  color: var(--danger);
}

.required-note {
  margin: 58px 0 0;
  padding-top: 14px;
  border-top: 1px solid #d7dbe8;
}

select {
  width: 212px;
  max-width: 100%;
  border: 1px solid #c5cada;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  color: #63708a;
}

.availability-list {
  display: grid;
  gap: 14px;
}

.availability-option-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 1rem;
}

.availability-option-row .availability-option {
  flex: 1 1 auto;
  min-width: 0;
}

.availability-session-unavailable {
  font-weight: 600;
  color: #5a4a2a;
  flex: 0 0 auto;
}

.availability-slot-label {
  flex: 1 1 12rem;
  font-size: 1.03rem;
  color: #101e37;
}

.availability-option-row .availability-session-cancel-btn,
.availability-option-row .availability-session-uncancel-btn {
  flex: 0 0 auto;
}

.availability-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.availability-option input {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.availability-option span {
  font-size: 1.03rem;
  color: #101e37;
}

.actions {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-btn {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
}

.secondary-btn {
  border: 1px solid var(--border, #c5cada);
  background: #fff;
  color: var(--text, #1a1a1a);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
}

.secondary-btn:hover {
  background: #f2f4fa;
}

.danger-btn {
  border: 1px solid var(--danger);
  background: #ffffff;
  color: var(--danger);
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
}

.danger-btn:hover {
  background: #fff1f1;
}

#logout-btn {
  border: 1px solid var(--danger);
  background: var(--danger);
  color: #fff;
  font-weight: 600;
  font-family: inherit;
}

#logout-btn:hover {
  background: #a61f27;
  border-color: #a61f27;
  color: #fff;
}

.match-scheduling-clear-actions .match-scheduling-danger-solid {
  border: 1px solid var(--danger);
  background: var(--danger);
  color: #fff;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.match-scheduling-clear-actions .match-scheduling-danger-solid:hover {
  background: #a61f27;
  border-color: #a61f27;
  color: #fff;
}

.admin-history-intro {
  margin: 0 0 12px 0;
  color: #444;
  line-height: 1.5;
  font-size: 0.95rem;
}

.admin-history-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.admin-history-filters label {
  font-weight: 600;
}

/* Fits e.g. "Round 1 (13 Apr 2026 - 10 May 2026)" (~40 chars) without using full card width. */
.admin-history-select {
  box-sizing: border-box;
  width: 48ch;
  min-width: min(100%, 20ch);
  max-width: 100%;
  padding: 6px 10px;
  font: inherit;
}

@media (max-width: 480px) {
  .admin-history-filters .admin-history-select,
  .admin-history-round-pick .admin-history-select {
    width: 100%;
  }
}

.admin-history-table {
  max-height: min(75vh, 720px);
  overflow: auto;
}

.admin-history-asof {
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #333;
}

table.admin-history-export-grid {
  min-width: 720px;
  font-size: 0.92rem;
}

table.admin-history-export-grid th,
table.admin-history-export-grid td {
  white-space: nowrap;
}

table.admin-history-export-grid td[data-col="session"] {
  white-space: normal;
  max-width: 28rem;
}

.admin-history-snap summary {
  cursor: pointer;
  user-select: none;
  color: #1a4d7a;
}

.admin-history-snap-list {
  margin: 8px 0 0 1.2em;
  padding: 0;
  text-align: left;
}

.admin-history-snap-li {
  margin: 4px 0;
}

.admin-history-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.admin-history-round-pick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.admin-history-round-pick label {
  font-weight: 600;
}

.admin-history-bottom-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.form-message {
  margin: 0;
  min-height: 22px;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

.table-wrapper {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
  background: #fff;
}

th,
td {
  border: 1px solid #d6daea;
  padding: 8px 10px;
  text-align: left;
  font-size: 0.92rem;
}

th {
  background: #eef2ff;
}

.allocation-summary-table th.allocation-sortable {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.allocation-summary-table th.allocation-sortable:hover {
  background: #dee6ff;
}

.allocation-sort-indicator {
  margin-left: 6px;
  font-size: 0.75em;
  color: #3d4a8f;
  font-weight: bold;
}

.allocation-sort-hint {
  display: inline-block;
  width: 1.1em;
}

.allocation-summary-table tbody tr.allocation-row-zero-matches {
  background: #ffe5e5;
}

.allocation-summary-table tbody tr.allocation-row-zero-matches td {
  border-color: #f5c2c2;
}

.allocation-summary-table tbody tr.allocation-row-low-allocation {
  background: #fff9d6;
}

.allocation-summary-table tbody tr.allocation-row-low-allocation td {
  border-color: #f0e6a8;
}

.slot-card {
  border: 1px solid #d6daea;
  border-radius: 6px;
  padding: 12px;
  margin: 10px 0;
  background: #fff;
}

.slot-card h3 {
  margin-bottom: 8px;
}

.slot-count {
  margin: 0 0 8px;
  color: #3f4f74;
}

.slot-card ul {
  margin: 0;
  padding-left: 18px;
}

.waiting-player {
  margin: 10px 0 0;
  color: #654400;
}

.free-session-on-sale-note {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: #5a4a2a;
  max-width: 28rem;
}

.free-session-picker {
  margin-top: 12px;
  padding: 12px;
  border: 1px dashed #9aa8d4;
  border-radius: 6px;
  background: #f8faff;
  max-width: 28rem;
}

.free-session-picker-title {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3a63;
}

.free-session-picker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.free-session-picker-row:last-child {
  margin-bottom: 0;
}

.free-session-picker-label {
  flex: 0 0 5rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.free-session-player-select {
  flex: 1 1 12rem;
  min-width: 10rem;
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--border, #c5cada);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}

.scheduled-match-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.scheduled-match-edit-row {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.scheduled-match-actions-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.scheduled-match-summary {
  font-weight: 600;
  color: #2d3a63;
}

.scheduled-match-edit-actions {
  margin-top: 10px;
}

.scheduled-match-edit-picker .scheduled-match-cancel-edit-btn {
  margin-top: 0;
}

.calendar-date-input,
.calendar-time-input {
  border: 1px solid #c5cada;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.88rem;
  background: #fff;
  color: var(--text);
  font-family: inherit;
}

.calendar-time-input {
  margin-top: 4px;
}

.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.session-calendar-timezone-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #3d4663;
  background: #f0f3fb;
  border-radius: 8px;
  border: 1px solid #d8def0;
}

.player-availability-admin-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4a5168;
  background: #f4f6fb;
  border-radius: 8px;
  border: 1px solid #e0e4f0;
}

#admin-panel-calendar h2 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.35;
}

.empty-state {
  margin: 0;
  color: #586079;
}

.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;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 35, 0.45);
}

.confirm-overlay.hidden {
  display: none;
}

.confirm-dialog {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  padding: 28px 32px 24px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.confirm-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.confirm-message {
  margin: 0 0 24px;
  font-size: 0.98rem;
  color: #4c5670;
  line-height: 1.5;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.confirm-btn {
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 500;
}

.confirm-btn-cancel {
  border: 1px solid #b4bbcf;
  background: #ffffff;
  color: #2a3457;
}

.confirm-btn-cancel:hover {
  background: #f0f1f5;
}

.confirm-btn-ok {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}

.confirm-btn-ok:hover {
  background: #243a9e;
}

.toggle-btn.pressed,
.danger-btn.pressed {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.danger-btn.pressed {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

.provide-availability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.provide-availability-header h3 {
  margin: 0;
}

.provide-availability-header .primary-btn {
  flex-shrink: 0;
}

.matches-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.matches-header h2 {
  margin: 0;
}

.matches-filter-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.matches-filter-buttons .primary-btn {
  opacity: 0.6;
}

.matches-filter-buttons .primary-btn.active {
  opacity: 1;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.admin-action-btn {
  min-width: 160px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

.settings-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.settings-field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.settings-field-toggle {
  gap: 8px;
  margin-top: 6px;
}

.settings-field-help {
  margin: 0;
  color: var(--muted, #6b6f77);
  font-size: 0.85rem;
  line-height: 1.35;
}

.settings-field input[type="number"] {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  width: 100%;
}

.email-template-section {
  margin-bottom: 24px;
}

.email-template-section > label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.email-template-textarea {
  width: 100%;
  min-height: 160px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  resize: vertical;
}

.tennis-centers-section {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
}

.tennis-centers-section h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.tennis-center-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.tennis-center-row input[type="text"],
.tennis-center-row input[type="email"] {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}

.tennis-center-row input[type="text"] {
  max-width: 250px;
}

.tennis-center-row .remove-center-btn {
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tennis-center-row .remove-center-btn:hover {
  opacity: 0.85;
}

.players-table input[type="text"],
.players-table input[type="email"],
.players-table input[type="tel"],
.players-table input[type="password"] {
  width: 100%;
  min-width: 100px;
  padding: 5px 8px;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  box-sizing: border-box;
}

.players-table input:focus {
  border-color: var(--primary);
  outline: none;
}

.players-table select {
  padding: 5px 8px;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
}

.delete-player-btn {
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
}

.delete-player-btn:hover {
  opacity: 0.85;
}

.players-table {
  table-layout: fixed;
}

.players-table th {
  position: relative;
  min-width: 60px;
  overflow: hidden;
}

.players-table .col-resize-handle {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  cursor: col-resize;
  background: transparent;
  z-index: 1;
}

.players-table .col-resize-handle:hover,
.players-table .col-resize-handle.dragging {
  background: var(--primary);
  opacity: 0.4;
}

.players-table td {
  vertical-align: middle;
  overflow: hidden;
}

.ranking-paste-label {
  display: block;
  margin-top: 22px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
}

.ranking-paste-area {
  width: 100%;
  min-height: 160px;
  padding: 10px 12px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.93rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  resize: vertical;
  box-sizing: border-box;
}

.ranking-paste-area:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.12);
}

.match-reminders-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.match-reminders-heading {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.match-reminders-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 1rem;
  margin-bottom: 12px;
}

.match-reminders-label {
  font-weight: 600;
  min-width: 10rem;
}

.match-reminders-toggle.match-reminders-toggle {
  min-width: 4rem;
}

.match-reminders-lead {
  align-items: flex-end;
}

.match-reminders-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.match-reminders-field label {
  font-size: 0.92rem;
}

.match-reminders-select {
  min-width: 5rem;
  padding: 0.5rem 0.6rem;
  margin: 0;
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

/* ── Email Approval Panel ── */

.email-approval-description {
  color: #555;
  font-size: 0.93rem;
  margin-bottom: 18px;
}

#email-approval-list {
  overflow-x: auto;
  margin-bottom: 8px;
}

.email-approval-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.93rem;
}

.email-approval-table th,
.email-approval-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.email-approval-preview-td {
  max-width: 320px;
  min-width: 120px;
}

.email-approval-preview-scroll {
  max-height: 200px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.88rem;
  line-height: 1.35;
}

.email-approval-body-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555;
  margin-bottom: 8px;
}

.email-approval-body-cell {
  background: #f4f5f8;
  padding-top: 12px !important;
  padding-bottom: 16px !important;
}

.email-approval-preview-body-full {
  max-height: min(70vh, 560px);
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.88rem;
  line-height: 1.45;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
}

.email-approval-table th {
  background: #eceef3;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #555;
}

.email-approval-table tr.email-approval-summary-row.email-approval-sent td:not(.email-approval-status-td) {
  color: #888;
  text-decoration: line-through;
}

.email-approval-table tr.email-approval-body-row.email-approval-sent .email-approval-body-label {
  color: #888;
}

.email-approval-table tr.email-approval-body-row.email-approval-sent .email-approval-preview-body-full {
  color: #666;
}

.email-approval-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.email-approval-toggle-option {
  padding: 7px 18px;
  border: none;
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.email-approval-toggle-option.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.email-approval-toggle-option:not(.active):hover {
  background: #eceef3;
}

.email-approval-toggle-section {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.email-approval-master-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.email-approval-status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.email-approval-status-badge.sent {
  background: #d4edda;
  color: #155724;
}

.email-approval-status-badge.approved {
  background: #cce5ff;
  color: #004085;
}

.email-approval-status-badge.pending {
  background: #fff3cd;
  color: #856404;
}

.email-approval-empty {
  color: #888;
  font-style: italic;
  padding: 18px 0;
}

@media (max-width: 760px) {
  .app {
    padding: 14px 8px 28px;
  }

  .card {
    padding: 18px 14px;
  }

  .availability-option span {
    font-size: 1.05rem;
  }

  .availability-option input {
    width: 20px;
    height: 20px;
  }

  .required-note {
    margin-top: 24px;
  }
}
