.scheduled-tasks-page {
  --task-card: #111820;
  --task-card-alt: #141c24;
  --task-border: #293641;
  --task-muted: #82919f;
  display: grid;
  gap: 20px;
  padding: 10px 10px 48px;
  max-width: 1600px;
  margin: 0 auto;
}
.task-list-view,
.task-executions-view {
  display: grid;
  gap: 20px;
}
.scheduled-tasks-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.task-eyebrow,
.dialog-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #9384ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.scheduled-tasks-page h1,
.scheduled-task-dialog h2 {
  margin: 0;
  color: #f0f5f9;
  letter-spacing: -0.6px;
}
.scheduled-tasks-page h1 {
  font-size: 30px;
}
.scheduled-tasks-header p,
.scheduled-task-dialog header p {
  margin: 7px 0 0;
  color: var(--task-muted);
  font-size: 12px;
}
.scheduled-task-header-actions {
  display: flex;
  gap: 9px;
}
.scheduled-task-header-actions .button,
.endpoint-task-form footer .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.scheduled-task-header-actions svg,
.endpoint-task-form footer svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scheduled-tasks-refresh.is-loading svg,
.task-icon-button.is-loading svg {
  animation: task-spin 0.8s linear infinite;
}
.scheduler-worker-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #286b4a;
  border-radius: 11px;
  background: linear-gradient(90deg, #102a20, #10231d);
  box-shadow: inset 0 1px #ffffff05;
}
.scheduler-worker-notice div {
  display: grid;
  gap: 3px;
}
.scheduler-worker-notice strong {
  color: #a9e8c4;
  font-size: 12px;
}
.scheduler-worker-notice small {
  color: #78a98d;
  font-size: 10px;
}
.worker-pulse {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: #55d88d;
  box-shadow: 0 0 0 5px #55d88d1f;
}
.worker-state {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 99px;
  background: #1b4933;
  color: #78dfa4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.scheduled-task-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 12px;
}
.scheduled-task-stats article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 15px 17px;
  border: 1px solid var(--task-border);
  border-radius: 11px;
  background: linear-gradient(145deg, #151e27, var(--task-card));
  box-shadow: 0 8px 25px #00000012;
}
.scheduled-task-stats article > div {
  display: grid;
  gap: 5px;
}
.scheduled-task-stats small {
  color: var(--task-muted);
  font-size: 10px;
}
.scheduled-task-stats strong {
  color: #edf3f8;
  font-size: 22px;
  line-height: 1;
}
.task-stat-dot {
  width: 9px;
  height: 32px;
  border-radius: 99px;
  background: #6e61d9;
}
.stat-running .task-stat-dot {
  background: #43b9db;
}
.stat-runs .task-stat-dot {
  background: #ddaa50;
}
.stat-failed .task-stat-dot {
  background: #d65c61;
}
.scheduled-task-stats.is-loading article {
  overflow: hidden;
}
.scheduled-task-stats.is-loading article:after,
.task-skeleton span {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  border-radius: 4px;
  background: linear-gradient(90deg, #202b35 25%, #2b3742 40%, #202b35 65%);
  background-size: 400% 100%;
  animation: task-shimmer 1.3s infinite;
}
.scheduled-task-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
}
.scheduled-task-list-head > div:first-child {
  display: grid;
  gap: 4px;
}
.scheduled-task-list-head h2 {
  margin: 0;
  color: #eaf0f5;
  font-size: 15px;
}
.task-result-count {
  color: var(--task-muted);
  font-size: 10px;
}
.scheduled-task-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.scheduled-task-tools .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}
.scheduled-task-tools .button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.task-search-wrap {
  display: flex;
  align-items: center;
  width: 240px;
  padding: 0 10px;
  border: 1px solid #34414c;
  border-radius: 8px;
  background: #10161d;
  color: #718391;
}
.task-search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 8px;
  background: transparent;
  color: #e6edf4;
  font: inherit;
  font-size: 11px;
}
.task-filter {
  border: 1px solid #34414c;
  border-radius: 8px;
  padding: 8px 28px 8px 10px;
  background: #10161d;
  color: #bac6d1;
  font: inherit;
  font-size: 11px;
}
.scheduled-task-table-wrap {
  overflow: auto;
  border: 1px solid var(--task-border);
  border-radius: 11px;
  background: var(--task-card);
  box-shadow: 0 12px 30px #00000012;
}
.scheduled-task-table {
  width: 100%;
  min-width: 1240px;
  border-collapse: collapse;
}
.scheduled-task-table th,
.scheduled-task-table td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--task-border);
  color: #aebbc7;
  font-size: 10px;
  text-align: left;
  vertical-align: middle;
}
.scheduled-task-table th {
  padding-top: 12px;
  padding-bottom: 12px;
  background: #141c24;
  color: #8192a1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}
.scheduled-task-table tbody tr {
  transition: background 0.15s;
}
.scheduled-task-table tbody tr:last-child td {
  border-bottom: 0;
}
.scheduled-task-table tbody tr:not(.task-skeleton):hover {
  background: #17212a;
}
.scheduled-task-table td strong,
.scheduled-task-table td small {
  display: block;
}
.scheduled-task-table td strong {
  color: #dce5ec;
  font-weight: 650;
}
.scheduled-task-table td small {
  margin-top: 4px;
  color: #718391;
}
.task-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}
.task-method-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: none;
  border: 1px solid #353658;
  border-radius: 8px;
  background: #23233c;
  color: #a99fff;
}
.task-method-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.task-identity small {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.3px;
}
.task-code {
  color: #aaa1ff !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.2px;
}
.task-table-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #dce5ec;
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}
.task-table-link:hover {
  color: #aaa1ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.task-boolean {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.task-boolean.yes {
  color: #6de09d;
}
.task-boolean.no {
  color: #ff8580;
}
.task-method {
  display: inline-flex;
  margin-right: 7px;
  padding: 3px 5px;
  border-radius: 4px;
  background: #243146;
  color: #9fc7ef;
  font:
    700 8px ui-monospace,
    monospace;
}
.method-post {
  background: #302b50;
  color: #beb5ff;
}
.method-delete {
  background: #49282b;
  color: #ffaaa5;
}
.task-endpoint {
  display: inline-block !important;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}
.task-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 99px;
  background: #303942;
  color: #b8c4ce;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.task-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.task-status.succeeded {
  background: #19442f;
  color: #6de09d;
}
.task-status.failed,
.task-status.abandoned {
  background: #4c282b;
  color: #ffaaa5;
}
.task-status.running {
  background: #193e52;
  color: #6bd1ec;
}
.task-status.scheduled {
  background: #302b50;
  color: #bcb1ff;
}
.task-status.paused {
  background: #303942;
  color: #8e9aa5;
}
.task-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.task-icon-button {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #82919f;
  cursor: pointer;
}
.task-icon-button:hover {
  border-color: #35434f;
  background: #202a33;
  color: #d7e0e8;
}
.task-icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.task-icon-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.task-switch {
  display: flex;
  align-items: center;
  width: 27px;
  height: 15px;
  padding: 2px;
  border-radius: 99px;
  background: #3b4650;
  transition: 0.15s;
}
.task-switch i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #a3adb5;
  transition: 0.15s;
}
.task-switch.on {
  background: #5f50da;
}
.task-switch.on i {
  transform: translateX(12px);
  background: #fff;
}
.task-state {
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 38px;
  color: var(--task-muted);
  text-align: center;
}
.task-state strong {
  color: #dbe5ed !important;
  font-size: 12px;
}
.task-state span {
  max-width: 460px;
  line-height: 1.5;
}
.task-state .button {
  margin-top: 8px;
}
.task-state-error strong {
  color: #ffaaa5 !important;
}
.task-skeleton span {
  height: 17px;
}
.scheduled-task-modal {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #05080de8;
  backdrop-filter: blur(3px);
}
.scheduled-task-dialog {
  width: min(900px, 100%);
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid #3a4854;
  border-radius: 14px;
  background: #141b22;
  box-shadow: 0 30px 90px #000b;
}
.scheduled-task-dialog > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid #2b3741;
}
.scheduled-task-dialog h2 {
  font-size: 19px;
}
.dialog-eyebrow {
  margin-bottom: 5px;
}
.task-log-list {
  display: grid;
  gap: 11px;
  max-height: calc(92vh - 92px);
  overflow: auto;
  padding: 17px;
}
.task-log-entry {
  padding: 14px;
  border: 1px solid #2c3944;
  border-radius: 10px;
  background: #111820;
}
.task-log-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.task-log-heading strong,
.task-log-heading small {
  display: block;
}
.task-log-heading strong {
  color: #e8eef4;
  font-size: 11px;
}
.task-log-heading small,
.task-log-entry p,
.task-log-entry summary {
  margin-top: 5px;
  color: #8393a2;
  font-size: 9px;
}
.task-log-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding: 9px 0;
  border-block: 1px solid #26323c;
  color: #718391;
  font-size: 9px;
}
.task-log-meta b {
  color: #b8c5d0;
}
.task-log-error,
.task-form-error {
  color: #ffaaa5 !important;
}
.task-log-entry details {
  margin-top: 10px;
}
.task-log-entry summary {
  cursor: pointer;
}
.task-log-entry pre {
  overflow: auto;
  max-height: 240px;
  margin: 9px 0 0;
  padding: 10px;
  border-radius: 7px;
  background: #0b1117;
  color: #aebbc7;
  font:
    9px/1.5 ui-monospace,
    monospace;
  white-space: pre-wrap;
}
.task-progress {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}
.task-progress > div {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #29343e;
}
.task-progress > div span {
  display: block;
  height: 100%;
  background: #7763f3;
}
.task-progress small {
  color: #81909e;
  font-size: 9px;
}
.execution-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 2px 0;
}
.execution-page-header h1 {
  margin: 8px 0 0;
  color: #edf3f8;
  font-size: 22px;
}
.execution-page-header p {
  margin: 5px 0 0;
  color: #82919f;
  font-size: 10px;
}
.execution-page-actions {
  display: flex;
  gap: 8px;
}
.execution-page-header .button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.execution-page-header .button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.execution-back {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9c91ff;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.execution-back:hover {
  text-decoration: underline;
}
.execution-table-section {
  display: grid;
  gap: 8px;
}
.execution-table-section > header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.execution-table-section h2 {
  margin: 0;
  color: #dce5ec;
  font-size: 12px;
}
.execution-table-section > header span {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  border-radius: 99px;
  background: #292741;
  color: #b9b0ff;
  font-size: 8px;
}
.execution-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
}
.execution-table th,
.execution-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--task-border);
  color: #aebbc7;
  font-size: 9px;
  text-align: left;
}
.execution-table th {
  background: #141c24;
  color: #8192a1;
  font-size: 8px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.execution-table tbody tr:last-child td {
  border-bottom: 0;
}
.execution-row {
  cursor: pointer;
}
.execution-row:hover {
  background: #19232c;
}
.execution-row td:first-child {
  color: #aaa1ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.execution-error {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.task-execution-dialog {
  width: min(950px, 100%);
}
.task-execution-details {
  display: grid;
  gap: 16px;
  max-height: calc(92vh - 90px);
  overflow: auto;
  padding: 18px;
}
.execution-detail-page {
  max-height: none;
  overflow: visible;
  padding: 0 2px 30px;
}
.execution-detail-page .execution-detail-grid,
.execution-detail-page .execution-detail-section {
  width: 100%;
}
.execution-request-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #2c3944;
  border-radius: 8px;
  background: #111820;
}
.execution-request-line .task-method {
  flex: none;
  margin: 0;
}
.execution-request-line code {
  overflow: auto;
  color: #bdc9d3;
  font:
    10px/1.5 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  white-space: nowrap;
}
.execution-detail-back {
  display: block;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9c91ff;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.execution-detail-back:hover {
  text-decoration: underline;
}
.execution-response-headers {
  width: max-content;
  max-width: 100%;
}
.execution-response-headers summary {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid #34414c;
  border-radius: 7px;
  background: #172029;
  color: #c9d4df;
  font-size: 10px;
  cursor: pointer;
  list-style: none;
}
.execution-response-headers summary::-webkit-details-marker {
  display: none;
}
.execution-response-headers summary:before {
  content: "›";
  margin-right: 7px;
  transition: transform 0.15s;
}
.execution-response-headers[open] {
  width: 100%;
}
.execution-response-headers[open] summary:before {
  transform: rotate(90deg);
}
.execution-response-headers pre {
  overflow: auto;
  max-height: 260px;
  margin: 9px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #0b1117;
  color: #aebbc7;
  font:
    9px/1.55 ui-monospace,
    monospace;
  white-space: pre-wrap;
}
.execution-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.execution-detail-grid article {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid #2c3944;
  border-radius: 8px;
  background: #111820;
}
.execution-detail-grid small,
.execution-detail-section h3 {
  color: #718391;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.execution-detail-grid strong {
  color: #dce5ec;
  font-size: 10px;
}
.execution-detail-section {
  display: grid;
  gap: 8px;
}
.execution-detail-section h3,
.execution-detail-section p {
  margin: 0;
}
.execution-detail-section pre {
  overflow: auto;
  max-height: 260px;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #0b1117;
  color: #aebbc7;
  font:
    9px/1.55 ui-monospace,
    monospace;
  white-space: pre-wrap;
}
.scheduled-task-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 45px;
  color: #82919f;
  font-size: 11px;
}
.scheduled-task-loading span {
  width: 16px;
  height: 16px;
  border: 2px solid #3c4752;
  border-top-color: #8b78ff;
  border-radius: 50%;
  animation: task-spin 0.7s linear infinite;
}
.endpoint-task-form {
  width: min(820px, 100%);
}
.endpoint-task-form form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  max-height: calc(92vh - 88px);
  overflow: auto;
  padding: 18px 20px 20px;
}
.endpoint-task-form .full,
.endpoint-task-form footer,
.endpoint-task-form .task-form-error {
  grid-column: 1/-1;
}
.task-form-section {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid #2b3741;
}
.task-form-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.task-form-section h3 {
  margin: 0;
  color: #dce5ec;
  font-size: 12px;
}
.task-form-section p {
  margin: 4px 0 0;
  color: #718291;
  font-size: 9px;
}
.endpoint-task-form .field label {
  color: #aab7c3;
}
.endpoint-task-form .field label b {
  color: #9686ff;
}
.endpoint-task-form .field small {
  color: #718291;
  font-size: 9px;
  line-height: 1.4;
}
.task-method-field {
  grid-column: span 1;
}
.task-url-field {
  grid-column: span 1;
}
.task-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.task-options label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px;
  border: 1px solid #303d48;
  border-radius: 8px;
  background: #111820;
  cursor: pointer;
}
.task-options input {
  margin-top: 2px;
  accent-color: #7661ef;
}
.task-options span {
  display: grid;
  gap: 3px;
}
.task-options strong {
  color: #cdd7df;
  font-size: 10px;
}
.task-options small {
  color: #728290;
  font-size: 9px;
}
.task-form-error {
  min-height: 14px;
  margin: 0;
  font-size: 10px;
}
.endpoint-task-form footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 8px;
  position: sticky;
  bottom: -20px;
  margin: 2px -20px -20px;
  padding: 14px 20px;
  border-top: 1px solid #2b3741;
  background: #141b22;
}
.task-toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  max-width: 380px;
  padding: 12px 15px;
  border: 1px solid #397355;
  border-radius: 9px;
  background: #17251e;
  color: #bce9ce;
  box-shadow: 0 15px 40px #0009;
  font-size: 11px;
}
.task-toast.error {
  border-color: #784145;
  background: #291a1c;
  color: #ffc0bc;
}
.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;
}
@keyframes task-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes task-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@media (max-width: 980px) {
  .scheduled-tasks-page {
    padding: 10px 10px 28px;
  }
  .scheduled-task-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .scheduled-tasks-page {
    gap: 16px;
    padding: 10px 10px 28px;
  }
  .scheduled-tasks-header,
  .scheduled-task-list-head {
    align-items: stretch;
    flex-direction: column;
  }
  .scheduled-task-header-actions .button {
    flex: 1;
  }
  .scheduled-task-tools {
    width: 100%;
    flex-wrap: wrap;
  }
  .task-search-wrap {
    width: auto;
    flex: 1;
  }
  .scheduled-task-stats {
    gap: 8px;
  }
  .scheduled-task-stats article {
    min-height: 66px;
    padding: 12px;
  }
  .scheduled-task-table {
    min-width: 0;
  }
  .scheduled-task-table thead {
    display: none;
  }
  .scheduled-task-table tbody,
  .scheduled-task-table tr,
  .scheduled-task-table td {
    display: block;
  }
  .scheduled-task-table tr {
    padding: 12px;
    border-bottom: 1px solid var(--task-border);
  }
  .scheduled-task-table td {
    display: grid;
    grid-template-columns: 92px 1fr;
    padding: 7px;
    border: 0;
  }
  .scheduled-task-table td:before {
    content: attr(data-label);
    color: #718291;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .scheduled-task-table td:last-child:before {
    display: none;
  }
  .task-actions {
    justify-content: flex-start;
  }
  .task-endpoint {
    max-width: calc(100vw - 155px);
  }
  .endpoint-task-form form {
    grid-template-columns: 1fr;
  }
  .endpoint-task-form .field,
  .endpoint-task-form .full {
    grid-column: 1;
  }
  .task-options {
    grid-template-columns: 1fr;
  }
  .endpoint-task-form footer {
    grid-template-columns: 1fr 1fr;
  }
  .endpoint-task-form footer span {
    display: none;
  }
  .endpoint-task-form footer .task-delete {
    grid-column: 1/-1;
    order: 3;
  }
  .scheduled-task-modal {
    padding: 8px;
  }
  .scheduled-task-dialog {
    max-height: 97vh;
  }
  .task-log-list,
  .endpoint-task-form form {
    max-height: calc(97vh - 88px);
  }
  .execution-page-header {
    align-items: stretch;
    flex-direction: column;
  }
  .execution-page-actions .button {
    flex: 1;
    justify-content: center;
  }
  .execution-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}
