:root {
    --my-page-background-top: #ffffff;
    --my-page-background-bottom: #f6f7f9;
    --my-surface: #ffffff;
    --my-surface-muted: #f6f8fa;
    --my-border: rgba(18, 24, 32, 0.09);
    --my-text-strong: #111111;
    --my-text-body: #414a57;
    --my-text-muted: #6d7682;
    --my-accent: #5b6572;
    --my-accent-soft: #eceff3;
    --my-success: #0f804c;
    --my-error: #a52121;
    --my-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.04);
    --my-shadow-header: 0 6px 18px rgba(15, 23, 42, 0.035);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    color: var(--my-text-strong);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, var(--my-page-background-top) 0, var(--my-page-background-bottom) 100%);
}

.my-page-shell {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
    padding: 32px 0 64px;
}

.my-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.my-skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.65rem 0.9rem;
    border-radius: 0.65rem;
    color: #ffffff;
    background: #111827;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-200%);
}

.my-skip-link:focus {
    color: #ffffff;
    transform: translateY(0);
}

.my-page {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
}

.my-page__title {
    margin: 0 0 0 -0.08em;
    color: var(--my-text-strong);
    font-size: clamp(2rem, 4.4vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.my-page__breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.my-page__breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--my-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.my-page__breadcrumbs-item + .my-page__breadcrumbs-item::before {
    content: "\203a";
    color: rgba(65, 74, 87, 0.52);
    font-size: 1.05em;
    font-weight: 700;
}

.my-page__breadcrumb-link,
.my-page__breadcrumb-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.my-page__breadcrumb-link {
    color: var(--my-text-body);
    text-decoration: underline dotted rgba(65, 74, 87, 0.42);
    text-underline-offset: 0.2em;
}

.my-page__breadcrumb-link:hover,
.my-page__breadcrumb-link:focus-visible {
    color: #2c5fe5;
    text-decoration-color: rgba(44, 95, 229, 0.68);
}

.my-page-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--my-border);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--my-shadow-header);
    backdrop-filter: blur(20px);
}

.my-page-header__inner {
    width: min(1240px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.my-page-header__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    flex: 0 0 auto;
    color: var(--my-text-strong);
    text-decoration: none;
    white-space: nowrap;
}

.my-page-header__brand:hover,
.my-page-header__brand:focus-visible {
    color: var(--my-text-strong);
}

.my-page-header__brand-mark {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.my-page-header__brand-app {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    color: var(--my-accent);
    background: var(--my-accent-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.my-page-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.my-page-header__nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--my-text-body);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    transition: background-color 160ms ease, color 160ms ease;
}

.my-page-header__nav-link:hover,
.my-page-header__nav-link:focus-visible,
.my-page-header__nav-link.my-is-active {
    color: var(--my-text-strong);
    background: var(--my-surface-muted);
}

.my-page-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 14px;
}

.my-page-header__icon-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--my-text-strong);
    background: transparent;
    cursor: pointer;
    list-style: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.my-page-header__icon-button::-webkit-details-marker {
    display: none;
}

.my-page-header__icon-button:hover,
.my-page-header__icon-button:focus-visible {
    opacity: 0.7;
    transform: translateY(-1px);
}

.my-page-header__icon-button:focus-visible {
    outline: 3px solid rgba(44, 95, 229, 0.24);
    outline-offset: 4px;
}

.my-page-header__icon {
    width: 28px;
    height: 28px;
    display: block;
}

.my-page-header__mobile-menu {
    position: relative;
    display: none;
}

.my-page-header__dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid var(--my-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.my-page-header__dropdown-title {
    margin: 0 0 14px;
    color: var(--my-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.my-page-header__mobile-links {
    display: grid;
    gap: 8px;
}

.my-page-header__mobile-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--my-text-body);
    text-decoration: none;
    font-weight: 600;
}

.my-page-header__mobile-link:hover,
.my-page-header__mobile-link:focus-visible,
.my-page-header__mobile-link.my-is-active {
    color: var(--my-text-strong);
    background: var(--my-surface-muted);
}

.my-page-header__logout-form {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.my-content-card,
.my-hero-panel {
    border: 1px solid var(--my-border);
    background: var(--my-surface);
    box-shadow: var(--my-shadow-soft);
}

.my-hero-panel {
    padding: 34px;
    border-radius: 32px;
}

.my-hero-panel--compact {
    max-width: 760px;
}

.my-content-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.my-content-card {
    display: block;
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    color: inherit;
    text-decoration: none;
}

a.my-content-card {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a.my-content-card:hover,
a.my-content-card:focus-visible {
    color: inherit;
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.my-hero-panel__eyebrow,
.my-content-card__kicker {
    margin: 0 0 12px;
    color: var(--my-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.my-hero-panel__title,
.my-content-card__title {
    margin: 0;
    letter-spacing: -0.045em;
}

.my-hero-panel__title {
    max-width: 12ch;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.my-content-card__title {
    font-size: 1.55rem;
    line-height: 1.08;
}

.my-hero-panel__text,
.my-content-card__text {
    margin: 18px 0 0;
    max-width: 60ch;
    color: var(--my-text-body);
    font-size: 1.05rem;
    line-height: 1.65;
}

.my-content-card__body {
    margin-top: 24px;
}

.my-content-card__cta {
    display: inline-flex;
    margin-top: 24px;
    color: var(--my-text-strong);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.my-login-page {
    display: grid;
    min-height: 100vh;
}

.my-login-shell {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.my-login-card {
    width: min(100%, 28rem);
    padding: clamp(1.75rem, 5vw, 2.75rem);
    border: 1px solid var(--my-border);
    border-radius: 2rem;
    background: var(--my-surface);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.my-login-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2.25rem;
}

.my-login-brand__mark {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.my-login-brand__app {
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    color: var(--my-accent);
    background: var(--my-accent-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.my-login-card h1 {
    margin: 0;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
}

.my-login-card__intro {
    margin: 1rem 0 1.75rem;
    color: var(--my-text-body);
    line-height: 1.6;
}

.my-login-form {
    display: grid;
    gap: 1.1rem;
}

.my-login-form .btn {
    min-height: 46px;
    margin-top: 0.35rem;
}

.my-overview-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(17rem, 0.8fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 5rem);
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid var(--my-border);
    border-radius: 2rem;
    background: var(--my-surface);
    box-shadow: var(--my-shadow-soft);
}

.my-overview-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.my-overview-hero p {
    max-width: 42rem;
    margin: 1.4rem 0 0;
    color: var(--my-text-body);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.6;
}

.my-overview-runtime {
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.my-overview-runtime > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--my-border);
}

.my-overview-runtime dt,
.my-definition-grid dt {
    color: var(--my-text-muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.my-overview-runtime dd,
.my-definition-grid dd {
    margin: 0;
    color: var(--my-text-strong);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.my-definition-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.my-definition-grid--single {
    grid-template-columns: 1fr;
}

.my-definition-grid > div {
    min-width: 0;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: var(--my-surface-muted);
}

.my-definition-grid dt {
    margin: 0 0 0.35rem;
}

.my-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9em;
    overflow-wrap: anywhere;
}

.my-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.055em;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}

.my-status--success {
    color: #0a633b;
    background: rgba(15, 128, 76, 0.13);
}

.my-status--danger {
    color: #8f1b1b;
    background: rgba(165, 33, 33, 0.13);
}

.my-status--warning {
    color: #754900;
    background: rgba(196, 126, 0, 0.16);
}

.my-status--muted {
    color: #525b68;
    background: rgba(82, 91, 104, 0.12);
}

.my-toolbar {
    padding: 1rem;
    border: 1px solid var(--my-border);
    border-radius: 1.25rem;
    background: var(--my-surface);
    box-shadow: var(--my-shadow-soft);
}

.my-table-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--my-border);
    border-radius: 1.25rem;
    background: var(--my-surface);
    box-shadow: var(--my-shadow-soft);
    -webkit-overflow-scrolling: touch;
}

.my-table-shell:focus-visible {
    outline: 3px solid rgba(44, 95, 229, 0.24);
    outline-offset: 3px;
}

.my-data-table {
    min-width: 44rem;
    margin-bottom: 0;
}

.my-data-table > :not(caption) > * > * {
    padding: 0.9rem 1rem;
    border-color: var(--my-border);
    color: var(--my-text-body);
    vertical-align: middle;
}

.my-data-table thead th {
    color: var(--my-text-muted);
    background: var(--my-surface-muted);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.075em;
    white-space: nowrap;
    text-transform: uppercase;
}

.my-data-table tbody tr:last-child > * {
    border-bottom: 0;
}

.my-data-table tbody tr:hover > * {
    background: rgba(246, 248, 250, 0.72);
}

.my-data-table a {
    font-weight: 650;
    text-underline-offset: 0.17em;
}

.my-table-error {
    max-width: 24rem;
    white-space: normal;
    overflow-wrap: anywhere;
}

.my-storage-list {
    display: grid;
    border: 1px solid var(--my-border);
    border-radius: 1rem;
    overflow: hidden;
}

.my-storage-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 5.5rem minmax(12rem, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: var(--my-text-body);
    background: var(--my-surface);
    text-decoration: none;
}

.my-storage-row + .my-storage-row {
    border-top: 1px solid var(--my-border);
}

a.my-storage-row:hover,
a.my-storage-row:focus-visible {
    color: var(--my-text-strong);
    background: var(--my-surface-muted);
}

.my-storage-row__kind {
    color: var(--my-text-muted);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.my-storage-row__name {
    min-width: 0;
    overflow-wrap: anywhere;
}

.my-storage-row--prefix .my-storage-row__kind {
    color: #24538f;
}

.my-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.875rem;
    color: var(--my-text-muted);
}

.my-links__section {
    min-width: 0;
}

.my-links__title {
    margin: 0 0 0.8rem;
    color: var(--my-text-strong);
    font-size: 1.12rem;
    font-weight: 700;
}

.my-links__list {
    margin: 0;
    padding: 0 0 0 1.15rem;
}

.my-links__item + .my-links__item {
    margin-top: 0.55rem;
}

.my-links__link {
    color: #3d73bf;
    font-size: 1.05rem;
    line-height: 1.4;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.my-links__link:hover,
.my-links__link:focus-visible {
    color: #24538f;
}

.my-ajax-panel {
    min-height: var(--my-ajax-panel-min-height, 18rem);
}

.my-ajax-panel__content,
.my-ajax-panel__loading,
.my-ajax-panel__error {
    min-height: inherit;
}

.my-ajax-panel__loading,
.my-ajax-panel__error {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.my-ajax-panel__error {
    color: var(--my-error);
}

.my-ajax-panel__spinner {
    width: 1.75rem;
    height: 1.75rem;
    border: 2px solid rgba(65, 74, 87, 0.18);
    border-top-color: var(--my-accent);
    border-radius: 50%;
    animation: my-spin 700ms linear infinite;
}

@keyframes my-spin {
    to { transform: rotate(360deg); }
}

.my-background-job-status {
    display: grid;
    gap: 1rem;
}

.my-background-job-status__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.my-background-job-status__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.my-background-job-status__pill--running,
.my-background-job-status__pill--executing,
.my-background-job-status__pill--autostart-enabled {
    color: var(--my-success);
    background: rgba(15, 128, 76, 0.12);
}

.my-background-job-status__pill--stopped,
.my-background-job-status__pill--autostart-disabled {
    color: var(--my-error);
    background: rgba(165, 33, 33, 0.12);
}

.my-background-job-status__summary {
    margin: 0;
    color: var(--my-text-muted);
}

.my-background-job-status__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 0.85rem;
    margin: 0;
}

.my-background-job-status__stats > div {
    padding: 0.85rem 1rem;
    border-radius: 1.1rem;
    background: rgba(17, 17, 22, 0.04);
}

.my-background-job-status__stats dt,
.my-background-job-result__label {
    margin: 0 0 0.35rem;
    color: var(--my-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.my-background-job-status__stats dd {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.my-background-job-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 0.5rem;
}

.my-background-job-table-wrap:focus-visible {
    outline: 3px solid rgba(44, 95, 229, 0.24);
    outline-offset: 3px;
}

.my-background-job-table {
    width: 100%;
    min-width: 48rem;
    border-collapse: separate;
    border-spacing: 0;
}

.my-background-job-table th {
    padding: 0 1rem 0.85rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.14);
    color: var(--my-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.my-background-job-table td {
    padding: 0.9rem 1rem 0.9rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
    color: var(--my-text-body);
    font-size: 0.92rem;
    vertical-align: middle;
}

.my-background-job-table__cell--nowrap {
    white-space: nowrap;
}

.my-background-job-table__cell--error {
    max-width: 22rem;
    overflow-wrap: anywhere;
}

.my-background-job-table__status {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.my-background-job-table__status--success {
    color: var(--my-success);
}

.my-background-job-table__status--error {
    color: var(--my-error);
}

.my-background-job-table__status--canceled {
    color: #8a5a00;
}

.my-background-job-table__link {
    color: #3d73bf;
    font-weight: 600;
    text-decoration: underline dotted;
    text-underline-offset: 0.2em;
}

.my-background-job-table__empty {
    color: var(--my-text-muted);
}

.my-file-summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 13rem;
}

.my-file-summary__details {
    min-width: 0;
}

.my-file-thumbnail {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: block;
    border: 1px solid var(--my-border);
    border-radius: 0.65rem;
    background: var(--my-surface-muted);
    object-fit: cover;
}

.my-file-thumbnail--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--my-text-muted);
    font-size: 0.85rem;
}

.my-background-job-result {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.my-background-job-result__field {
    min-width: 0;
    padding: 0.85rem 1rem;
    border: 1px solid var(--my-border);
    border-radius: 1rem;
    background: var(--my-surface-muted);
}

.my-background-job-result__field--wide {
    grid-column: 1 / -1;
}

.my-background-job-result__value {
    margin: 0;
    color: var(--my-text-strong);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.my-background-job-result__value--multiline {
    min-height: 4.5rem;
    white-space: pre-wrap;
}

.my-background-job-result__field--success .my-background-job-result__value {
    color: var(--my-success);
    letter-spacing: 0.08em;
}

.my-background-job-result__field--error .my-background-job-result__value {
    color: var(--my-error);
    letter-spacing: 0.08em;
}

.my-background-job-result__field--canceled .my-background-job-result__value {
    color: #8a5a00;
    letter-spacing: 0.08em;
}

.my-action-log,
.my-json,
.my-code {
    margin: 0;
    padding: 1.25rem 1.5rem;
    overflow-x: auto;
    border-radius: 1.25rem;
    color: #f3f4f6;
    background: #111827;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9rem;
    line-height: 1.65;
    tab-size: 2;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.my-environment-indicator {
    position: fixed;
    left: max(0.55rem, env(safe-area-inset-left));
    bottom: max(0.55rem, env(safe-area-inset-bottom));
    z-index: 1080;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    pointer-events: none;
    user-select: none;
}

.my-environment-indicator__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.4rem;
    border-radius: 999px;
    color: rgba(153, 27, 27, 0.92);
    background: rgba(185, 28, 28, 0.12);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: lowercase;
}

.my-environment-indicator__badge--neutral {
    color: rgba(65, 74, 87, 0.55);
    background: transparent;
}

@media (max-width: 960px) {
    .my-page-header__nav {
        display: none;
    }

    .my-page-header__actions {
        margin-left: auto;
    }

    .my-page-header__mobile-menu {
        display: block;
    }

    .my-content-grid {
        grid-template-columns: 1fr;
    }

    .my-overview-hero {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .my-overview-runtime {
        max-width: 32rem;
    }
}

@media (max-width: 760px) {
    .my-storage-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.4rem 1rem;
    }

    .my-storage-row__kind,
    .my-storage-row__name {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .my-page-shell {
        width: min(100% - 24px, 1160px);
        padding-top: 24px;
    }

    .my-page {
        gap: 14px;
        margin-bottom: 24px;
    }

    .my-page-header__inner {
        width: min(100% - 24px, 1240px);
        min-height: 68px;
        gap: 12px;
    }

    .my-page-header__brand {
        gap: 9px;
        align-items: center;
    }

    .my-page-header__brand-mark {
        font-size: 1.4rem;
    }

    .my-page-header__brand-app {
        padding: 0.32rem 0.62rem;
        font-size: 0.68rem;
        letter-spacing: 0.11em;
    }

    .my-page-header__actions {
        gap: 13px;
    }

    .my-page-header__dropdown-menu {
        position: fixed;
        top: 76px;
        right: 12px;
    }

    .my-content-card,
    .my-hero-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .my-links,
    .my-background-job-result,
    .my-definition-grid {
        grid-template-columns: 1fr;
    }

    .my-overview-hero {
        padding: 1.6rem;
        border-radius: 1.5rem;
    }

    .my-login-shell {
        padding: 16px 12px;
    }

    .my-login-card {
        border-radius: 1.5rem;
    }

    .my-toolbar .btn,
    .my-storage-prefix-form .btn {
        width: 100%;
    }

    .my-background-job-result__field--wide {
        grid-column: auto;
    }
}

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