:root {
  --ui-page-base-rgb: 194, 178, 128;
  --ui-page-text: #201a15;
  --ui-page-muted: #6b6358;
  --ui-page-border: rgba(84, 74, 62, 0.14);
  --ui-shell-bg:
    radial-gradient(circle at top left, rgba(255, 248, 238, 0.96) 0%, rgba(245, 236, 216, 0.52) 28%, transparent 56%),
    radial-gradient(circle at top right, rgba(var(--ui-page-base-rgb), 0.18) 0%, rgba(208, 227, 245, 0.18) 42%, transparent 68%),
    linear-gradient(135deg, #f7f3ee 0%, #efe7db 44%, #e8f3fb 100%);
  --ui-shell-overlay: rgba(255, 255, 255, 0.82);
  --ui-shell-overlay-strong: rgba(255, 255, 255, 0.93);
  --ui-panel-bg: rgba(255, 255, 255, 0.9);
  --ui-panel-bg-strong: rgba(255, 255, 255, 0.96);
  --ui-panel-border: rgba(108, 95, 78, 0.1);
  --ui-panel-shadow: 0 10px 28px rgba(43, 34, 24, 0.08);
  --ui-input-bg: rgba(255, 255, 255, 0.94);
  --ui-input-border: rgba(120, 108, 89, 0.12);
  --ui-input-focus: rgba(var(--ui-page-base-rgb), 0.16);
  --ui-divider: rgba(var(--ui-page-base-rgb), 0.16);
  --ui-chip-bg: rgba(250, 248, 245, 0.92);
  --ui-card-radius: 24px;
  --ui-shell-radius: 28px;
}

html.dark {
  --ui-page-base-rgb: 111, 78, 55;
  --ui-page-text: #f0e7df;
  --ui-page-muted: #c8bab0;
  --ui-page-border: rgba(209, 191, 176, 0.09);
  --ui-shell-bg:
    radial-gradient(circle at top left, rgba(126, 93, 68, 0.22) 0%, rgba(58, 42, 33, 0.1) 34%, transparent 58%),
    radial-gradient(circle at top right, rgba(83, 60, 43, 0.22) 0%, transparent 52%),
    linear-gradient(145deg, #161211 0%, #120e0d 45%, #1b1614 100%);
  --ui-shell-overlay: rgba(24, 20, 18, 0.82);
  --ui-shell-overlay-strong: rgba(24, 20, 18, 0.92);
  --ui-panel-bg: rgba(28, 23, 21, 0.9);
  --ui-panel-bg-strong: rgba(30, 24, 22, 0.94);
  --ui-panel-border: rgba(215, 196, 181, 0.08);
  --ui-panel-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  --ui-input-bg: rgba(34, 28, 25, 0.94);
  --ui-input-border: rgba(215, 196, 181, 0.08);
  --ui-input-focus: rgba(var(--ui-page-base-rgb), 0.2);
  --ui-divider: rgba(var(--ui-page-base-rgb), 0.14);
  --ui-chip-bg: rgba(31, 25, 23, 0.86);
}

html,
body {
  background: var(--ui-shell-bg) !important;
  color: var(--ui-page-text) !important;
}

body {
  min-height: 100vh;
}

html,
body,
button,
input,
textarea,
select,
option,
label,
p,
span,
small,
strong,
em,
h1,
h2,
h3,
h4,
h5,
h6,
li,
td,
th,
a,
.el-button,
.el-input__inner,
.el-textarea__inner,
.el-select__placeholder,
.el-dropdown-menu__item,
.el-menu-item,
.el-sub-menu__title,
.el-dialog__title,
.el-drawer__title,
.el-form-item__label,
.el-radio__label,
.el-checkbox__label,
.el-tabs__item,
.el-tag,
.el-message,
.el-message-box,
.el-notification,
.el-descriptions__label,
.el-descriptions__content,
.el-table,
.el-table th,
.el-table td {
  font-family: "Times New Roman", Times, serif !important;
}

body * {
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--ui-page-base-rgb), 0.24) transparent;
}

body *::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body *::-webkit-scrollbar-thumb {
  background: rgba(var(--ui-page-base-rgb), 0.24);
  border-radius: 999px;
}

.el-card,
.el-dialog,
.el-drawer,
.el-popover,
.el-dropdown-menu,
.el-select-dropdown,
.el-message,
.el-message-box,
.el-notification,
.el-collapse-item__wrap,
.el-table,
.el-table__inner-wrapper,
.el-descriptions,
.el-tabs__content,
.el-menu,
.el-pagination,
.el-upload-dragger,
.el-input__wrapper,
.el-textarea__inner,
.el-input-group__append,
.el-input-group__prepend {
  background: var(--ui-panel-bg) !important;
  border-color: var(--ui-panel-border) !important;
  box-shadow: var(--ui-panel-shadow) !important;
  color: var(--ui-page-text) !important;
}

.el-card__header,
.el-dialog__header,
.el-drawer__header,
.el-message-box__header,
.el-table th.el-table__cell,
.el-table tr,
.el-descriptions__body,
.el-tabs__nav-wrap::after,
.el-divider {
  border-color: var(--ui-divider) !important;
}

.el-button,
button,
[role='button'] {
  background: var(--ui-chip-bg) !important;
  border-color: var(--ui-panel-border) !important;
  color: var(--ui-page-text) !important;
  box-shadow: none !important;
}

.el-button:hover,
button:hover,
[role='button']:hover {
  background: var(--ui-panel-bg-strong) !important;
  border-color: rgba(var(--ui-page-base-rgb), 0.2) !important;
}

.el-button--primary,
.el-button--success,
.el-button--warning,
.el-button--danger,
.el-button--info {
  background: var(--ui-chip-bg) !important;
  border-color: var(--ui-panel-border) !important;
  color: var(--ui-page-text) !important;
}

.el-input__wrapper,
.el-textarea__inner,
.el-input__inner,
input,
textarea,
select {
  background: var(--ui-input-bg) !important;
  border-color: var(--ui-input-border) !important;
  box-shadow: none !important;
  color: var(--ui-page-text) !important;
}

.el-input__wrapper.is-focus,
.el-textarea__inner:focus,
.el-select__wrapper.is-focused,
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(var(--ui-page-base-rgb), 0.28) !important;
  box-shadow: 0 0 0 1px var(--ui-input-focus) !important;
}

.el-menu,
.el-sub-menu__title,
.el-menu-item,
.el-tabs__item,
.el-pagination,
.el-statistic,
.el-descriptions,
.el-upload-dragger,
.el-empty,
.el-result,
.el-alert,
.el-table tr,
.el-table th,
.el-table td,
.el-dropdown-menu__item,
.el-form-item__label,
.el-radio__label,
.el-checkbox__label,
.el-empty__description,
.el-tag,
.el-select__placeholder {
  color: var(--ui-page-text) !important;
}

.el-table::before,
.el-table__inner-wrapper::before,
.el-table__border-left-patch {
  background: var(--ui-divider) !important;
}

img,
video {
  border-radius: 18px;
}

[data-codex-hidden='true'] {
  display: none !important;
}

.codex-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 22px;
  background: var(--ui-shell-overlay);
  border: 1px solid var(--ui-panel-border);
  box-shadow: var(--ui-panel-shadow);
}

.codex-brand-lockup--compact {
  gap: 10px;
  padding: 8px 12px;
  border-radius: 18px;
}

.codex-brand-lockup__logo {
  width: clamp(42px, 4vw, 62px);
  height: auto;
  object-fit: contain;
}

.codex-brand-lockup__wordmark {
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ui-page-text);
  white-space: nowrap;
}

.codex-login-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 20px;
}

.codex-login-brand {
  padding: 18px 22px;
}

.codex-login-brand .codex-brand-lockup__logo {
  width: clamp(82px, 10vw, 116px);
}

.codex-login-brand .codex-brand-lockup__wordmark {
  font-size: clamp(22px, 2vw, 30px);
}

.codex-login-surface,
.codex-login-surface.el-card,
.codex-login-surface .el-card,
.codex-login-shell .el-form,
.codex-login-shell form {
  max-width: min(92vw, 760px);
  width: 100%;
  padding: 26px 22px;
  border-radius: 32px !important;
  background: var(--ui-shell-overlay-strong) !important;
  border: 1px solid var(--ui-panel-border) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1) !important;
}

.codex-login-shell .login-title {
  display: none !important;
}

.codex-empty-brand {
  margin-bottom: 18px;
}

.codex-photos-topbar,
.codex-photos-card {
  border-radius: var(--ui-shell-radius) !important;
}

.codex-photos-card {
  background: var(--ui-panel-bg) !important;
  border: 1px solid var(--ui-panel-border) !important;
  box-shadow: var(--ui-panel-shadow) !important;
}

.codex-brand-lockup {
  max-width: 100%;
  box-sizing: border-box;
}

.codex-brand-lockup__wordmark {
  overflow: hidden;
  text-overflow: ellipsis;
}

body.codex-route-home .codex-home-brand {
  width: 100%;
  justify-content: flex-start;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

body.codex-route-home .codex-home-brand .codex-brand-lockup__logo {
  width: 40px;
}

body.codex-route-home .codex-home-brand .codex-brand-lockup__wordmark {
  color: var(--ui-rail-text);
  font-size: 16px;
  letter-spacing: 0.14em;
}

body.codex-route-home .upload-home[data-v-66491cac] {
  position: relative;
  min-height: 100vh;
  padding: 14px;
  box-sizing: border-box;
}

body.codex-route-home .codex-home-source-header,
body.codex-route-home .upload-folder-container[data-v-66491cac],
body.codex-route-home .toggle-dark-button[data-v-66491cac],
body.codex-route-home .upload-method-button[data-v-66491cac],
body.codex-route-home .more-dropdown[data-v-66491cac],
body.codex-route-home .mobile-more-dropdown[data-v-66491cac],
body.codex-route-home .toolbar[data-v-66491cac],
body.codex-route-home .compress-button[data-v-66491cac],
body.codex-route-home .link-button[data-v-66491cac],
body.codex-route-home .config-button[data-v-66491cac],
body.codex-route-home .sign-out-button[data-v-66491cac] {
  display: none !important;
}

body.codex-route-home .codex-home-shell,
body.codex-route-home .codex-home-shell * {
  font-family: 'Segoe UI', system-ui, sans-serif !important;
}

body.codex-route-home .codex-home-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 100%;
  margin: 0;
}

body.codex-route-home .codex-home-rail {
  position: sticky;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: calc(100vh - 28px);
  padding: 18px 16px 22px;
  border-radius: 30px;
  background: var(--ui-rail-bg);
  color: var(--ui-rail-text);
  border: 1px solid var(--ui-rail-border);
  box-shadow: none;
}

body.codex-route-home .codex-home-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.codex-route-home .codex-home-nav__item {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: var(--ui-rail-text) !important;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 600;
}

body.codex-route-home .codex-home-nav__item.is-active,
body.codex-route-home .codex-home-nav__item:hover {
  background: var(--ui-rail-pill-active) !important;
}

body.codex-route-home .codex-home-rail__section {
  color: var(--ui-rail-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px 0;
}

body.codex-route-home .codex-home-rail__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px;
  color: var(--ui-rail-muted);
  font-size: 16px;
}

body.codex-route-home .codex-home-rail__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ui-rail-muted);
  font-size: 15px;
}

body.codex-route-home .codex-home-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

body.codex-route-home .codex-home-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

body.codex-route-home .codex-home-search {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: var(--ui-topbar-bg) !important;
  color: var(--ui-topbar-text) !important;
  text-align: left;
}

body.codex-route-home .codex-home-search__icon {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.72);
}

body.codex-route-home .codex-home-search__text {
  font-size: 19px;
  font-weight: 500;
}

body.codex-route-home .codex-home-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.codex-route-home .codex-home-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: var(--ui-topbar-bg) !important;
  color: var(--ui-topbar-text) !important;
  font-size: 24px;
}

body.codex-route-home .codex-home-stream,
body.codex-route-home .codex-home-empty {
  border-radius: 24px;
  background: #121212;
  color: #f4f4f4;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

body.codex-route-home .codex-home-stream {
  padding: 18px 18px 12px;
}

body.codex-route-home .codex-home-stream__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

body.codex-route-home .codex-home-stream__eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

body.codex-route-home .codex-home-stream__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

body.codex-route-home .codex-home-stream__upload {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f4f4f4 !important;
}

body.codex-route-home .codex-home-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 110px;
  gap: 4px;
}

body.codex-route-home .codex-home-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
}

body.codex-route-home .codex-home-media-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

body.codex-route-home .codex-home-media-card.is-wide {
  grid-column: span 2;
}

body.codex-route-home .codex-home-media-card.is-tall {
  grid-row: span 2;
}

body.codex-route-home .codex-home-media-card__media {
  height: 100%;
}

body.codex-route-home .codex-home-media-card__asset {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

body.codex-route-home .codex-home-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
  padding: 30px;
}

body.codex-route-home .codex-home-empty__inner {
  width: min(100%, 680px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

body.codex-route-home .codex-home-empty__title {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

body.codex-route-home .codex-home-empty__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

body.codex-route-home .codex-home-empty__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body.codex-route-home .codex-home-empty[hidden],
body.codex-route-home .codex-home-stream[hidden] {
  display: none !important;
}

body.codex-route-home .upload-home .upload[data-v-66491cac],
body.codex-route-home .upload-home .upload {
  display: none;
  max-width: 1100px;
  margin: 8px 0 0 auto;
  padding: 20px;
  border-radius: 24px;
  background: var(--ui-shell-overlay-strong);
  border: 1px solid var(--ui-panel-border);
  box-shadow: var(--ui-panel-shadow);
}

body.codex-route-home .upload-home.codex-home-upload-open .upload[data-v-66491cac],
body.codex-route-home .upload-home.codex-home-upload-open .upload {
  display: block !important;
}

body.codex-route-home .upload-home .codex-home-empty-list,
body.codex-route-home .upload-home .upload-list-card:not(.upload-list-busy) {
  display: none !important;
}

body.codex-route-home .upload-home .upload-list-card.upload-list-busy {
  margin-top: 18px;
}

body.codex-route-home .upload-home .upload-card,
body.codex-route-home .upload-home .paste-card,
body.codex-route-home .upload-home .upload-list-card.upload-list-busy {
  background: transparent !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

@media (max-width: 1200px) {
  body.codex-route-home .codex-home-shell {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (max-width: 960px) {
  body.codex-route-home .upload-home[data-v-66491cac] {
    padding: 12px;
  }

  body.codex-route-home .codex-home-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  body.codex-route-home .codex-home-rail {
    position: static;
    min-height: auto;
  }

  body.codex-route-home .codex-home-nav {
    flex-direction: row;
    overflow-x: auto;
  }

  body.codex-route-home .codex-home-topbar {
    grid-template-columns: minmax(0, 1fr);
  }

  body.codex-route-home .codex-home-gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-auto-rows: 92px;
  }
}

@media (max-width: 640px) {
  body.codex-route-home .codex-home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.codex-route-home .codex-home-media-card.is-featured,
  body.codex-route-home .codex-home-media-card.is-wide {
    grid-column: span 2;
  }
}
body.codex-route-dashboard .codex-photos-dashboard,
body.codex-route-browse .codex-photos-browse {
  padding: 24px;
  box-sizing: border-box;
}

body.codex-route-dashboard .codex-photos-topbar,
body.codex-route-browse .codex-photos-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 24px;
  background: var(--ui-shell-overlay-strong) !important;
  border: 1px solid var(--ui-panel-border) !important;
  box-shadow: var(--ui-panel-shadow) !important;
}

body.codex-route-dashboard .codex-dashboard-brand,
body.codex-route-browse .codex-browse-brand {
  background: transparent;
  box-shadow: none;
}

body.codex-route-dashboard .codex-photos-stage,
body.codex-route-browse .codex-photos-stage {
  margin-top: 20px;
}

body.codex-route-dashboard .codex-photos-card,
body.codex-route-browse .codex-photos-card,
body.codex-route-home .upload-home .el-card,
body.codex-route-home .upload-home .el-upload-dragger,
body.codex-route-home .upload-home .upload-card,
body.codex-route-home .upload-home .paste-card,
body.codex-route-home .upload-home .upload-list-card {
  border-radius: 24px !important;
}

@media (max-width: 1200px) {
  body.codex-route-home .codex-home-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  body.codex-route-home .codex-home-albums {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body.codex-route-home .upload-home[data-v-66491cac],
  body.codex-route-dashboard .codex-photos-dashboard,
  body.codex-route-browse .codex-photos-browse {
    padding: 16px;
  }

  body.codex-route-home .codex-home-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body.codex-route-home .codex-home-rail {
    position: static;
    min-height: auto;
    padding: 18px;
  }

  body.codex-route-home .codex-home-nav {
    overflow-x: auto;
    flex-direction: row;
    padding-bottom: 4px;
  }

  body.codex-route-home .codex-home-nav__item {
    flex: 0 0 auto;
  }

  body.codex-route-home .codex-home-topbar {
    grid-template-columns: minmax(0, 1fr);
  }

  body.codex-route-home .codex-home-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  body.codex-route-home .codex-home-search {
    min-height: 58px;
    padding: 0 18px;
  }

  body.codex-route-home .codex-home-search__text {
    font-size: 20px;
  }

  body.codex-route-home .codex-home-hero,
  body.codex-route-home .codex-home-section,
  body.codex-route-home .codex-home-empty,
  body.codex-route-home .upload-home.codex-home-upload-open .upload[data-v-66491cac],
  body.codex-route-home .upload-home.codex-home-upload-open .upload {
    padding: 20px;
  }

  body.codex-route-home .codex-home-albums {
    grid-template-columns: 1fr;
  }

  body.codex-route-home .codex-home-gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  body.codex-route-home .codex-home-title,
  body.codex-route-home .codex-home-section__title,
  body.codex-route-home .codex-home-empty__title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  body.codex-route-home .codex-home-rail {
    border-radius: 24px;
  }

  body.codex-route-home .codex-home-action {
    width: 50px;
    height: 50px;
  }

  body.codex-route-home .codex-home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.codex-route-home .codex-home-album-card__title,
  body.codex-route-home .codex-home-media-card__title {
    font-size: 22px;
  }
}

body.codex-route-home .upload-folder-container[data-v-66491cac],
body.codex-route-home .toggle-dark-button[data-v-66491cac],
body.codex-route-home .upload-method-button[data-v-66491cac],
body.codex-route-home .more-dropdown[data-v-66491cac],
body.codex-route-home .mobile-more-dropdown[data-v-66491cac],
body.codex-route-home .toolbar[data-v-66491cac],
body.codex-route-home .compress-button[data-v-66491cac],
body.codex-route-home .link-button[data-v-66491cac],
body.codex-route-home .config-button[data-v-66491cac],
body.codex-route-home .sign-out-button[data-v-66491cac] {
  display: none !important;
}

body.codex-route-home .codex-home-shell:not(.is-empty) .codex-home-hero,
body.codex-route-home .codex-home-shell:not(.is-empty) .codex-home-empty {
  display: none !important;
}

body.codex-route-home .codex-home-shell.is-empty .codex-home-hero,
body.codex-route-home .codex-home-shell.is-empty .codex-home-section--albums,
body.codex-route-home .codex-home-shell.is-empty .codex-home-section--photos {
  display: none;
}

body.codex-route-home .codex-home-shell.is-empty .codex-home-content {
  min-height: calc(100vh - 120px);
  justify-content: center;
}

body.codex-route-home .codex-home-shell.is-empty .codex-home-empty {
  max-width: 980px;
}

body.codex-route-home .codex-home-shell:not(.is-empty) .codex-home-content {
  gap: 18px;
}

body.codex-route-home .codex-home-shell:not(.is-empty) .codex-home-section--photos {
  padding: 22px;
}

body.codex-route-home .codex-home-gallery {
  grid-auto-flow: dense;
  grid-auto-rows: 110px;
  gap: 12px;
}

body.codex-route-home .codex-home-media-card {
  position: relative;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
}

body.codex-route-home .codex-home-media-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

body.codex-route-home .codex-home-media-card.is-wide {
  grid-column: span 2;
}

body.codex-route-home .codex-home-media-card.is-tall {
  grid-row: span 2;
}

body.codex-route-home .codex-home-media-card__media {
  height: 100%;
  aspect-ratio: auto;
}

body.codex-route-home .codex-home-media-card__asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.codex-route-home .codex-home-media-card__body {
  display: none;
}

body.codex-route-home .codex-home-section--photos .codex-home-section__header {
  margin-bottom: 14px;
}

body.codex-route-home .codex-home-section--photos .codex-home-section__title {
  font-size: 22px;
}

body.codex-route-home .codex-home-section--photos .codex-home-section__eyebrow {
  color: rgba(245, 241, 235, 0.72);
}

@media (max-width: 960px) {
  body.codex-route-home .codex-home-gallery {
    grid-auto-rows: 92px;
  }
}

@media (max-width: 640px) {
  body.codex-route-home .codex-home-media-card.is-featured,
  body.codex-route-home .codex-home-media-card.is-wide {
    grid-column: span 2;
  }
}
body.codex-route-home .codex-home-shell-v2 {
  display: block;
  max-width: 100%;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-main-v2 {
  gap: 12px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-topbar-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 10px 6px 14px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-brand {
  width: auto;
  padding: 0;
  background: transparent;
  border: 0;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-brand .codex-brand-lockup__logo {
  width: 34px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-brand .codex-brand-lockup__wordmark {
  color: #f1f3f4;
  font-size: 15px;
  letter-spacing: 0.08em;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-actions-v2 {
  gap: 12px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-action {
  width: auto;
  height: 44px;
  min-width: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f1f3f4 !important;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-action--upload {
  background: #8ab4f8 !important;
  color: #0d1726 !important;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-action__icon {
  font-size: 18px;
  line-height: 1;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-action__label {
  margin-left: 8px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-stream-v2 {
  padding: 0;
  background: transparent;
  border: 0;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-stream__groups {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-day-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-day-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-day-group__title {
  margin: 0;
  color: #f1f3f4;
  font-size: 19px;
  font-weight: 600;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-gallery {
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  grid-auto-rows: 128px;
  gap: 4px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-media-card {
  border-radius: 2px;
  background: #1b1b1b;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-media-card__media,
body.codex-route-home .codex-home-shell-v2 .codex-home-media-card__asset {
  border-radius: 2px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-empty-v2 {
  min-height: calc(100vh - 220px);
  background: #121212;
}

body.codex-route-home .codex-home-shell-v2[hidden] {
  display: none !important;
}

body.codex-route-home .codex-home-shell-v2 ~ .codex-home-shell:not(.codex-home-shell-v2) {
  display: none !important;
}

body.codex-route-home .upload-home .history-container .file-index,
body.codex-route-home .upload-home .history-container .index,
body.codex-route-home .upload-home .upload-list-item .file-index,
body.codex-route-home .upload-home .upload-list-item .index,
body.codex-route-home .upload-home .upload-list-item .order,
body.codex-route-home .upload-home .upload-list-item .el-badge,
body.codex-route-home .upload-home .upload-list-item .el-tag,
body.codex-route-home .upload-home .upload-list-item .file-name,
body.codex-route-home .upload-home .upload-list-item .file-title,
body.codex-route-home .upload-home .upload-list-item .file-meta,
body.codex-route-home .upload-home .history-container .file-name,
body.codex-route-home .upload-home .history-container .file-meta {
  display: none !important;
}

@media (max-width: 960px) {
  body.codex-route-home .codex-home-shell-v2 .codex-home-topbar-v2 {
    flex-wrap: wrap;
    padding-right: 0;
  }

  body.codex-route-home .codex-home-shell-v2 .codex-home-actions-v2 {
    width: 100%;
    justify-content: flex-end;
  }

  body.codex-route-home .codex-home-shell-v2 .codex-home-gallery {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    grid-auto-rows: 110px;
  }
}

@media (max-width: 640px) {
  body.codex-route-home .codex-home-shell-v2 .codex-home-action {
    height: 40px;
    padding: 0 12px;
  }

  body.codex-route-home .codex-home-shell-v2 .codex-home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 108px;
  }
}
body.codex-route-home .codex-home-shell-v2 {
  position: relative;
  z-index: 5;
  display: block;
  padding-top: 4px;
}

body.codex-route-home .codex-home-shell:not(.codex-home-shell-v2) {
  display: none !important;
}

body.codex-route-home .codex-home-googlebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

body.codex-route-home .codex-home-googlebar__brand .codex-home-brand {
  width: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.codex-route-home .codex-home-googlebar__brand .codex-brand-lockup__logo {
  width: 32px;
}

body.codex-route-home .codex-home-googlebar__brand .codex-brand-lockup__wordmark {
  color: #f1f3f4;
  font-size: 15px;
  letter-spacing: 0.06em;
}

body.codex-route-home .codex-home-googlebar__search {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: #2b2b2b !important;
  color: #e8eaed !important;
  justify-content: flex-start;
  font-size: 16px;
}

body.codex-route-home .codex-home-googlebar__search-icon {
  font-size: 20px;
  opacity: 0.72;
}

body.codex-route-home .codex-home-googlebar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.codex-route-home .codex-home-googlebar__upload,
body.codex-route-home .codex-home-googlebar__icon {
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}

body.codex-route-home .codex-home-googlebar__upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #8ab4f8 !important;
  color: #0b1728 !important;
  font-size: 14px;
  font-weight: 600;
}

body.codex-route-home .codex-home-googlebar__upload-plus {
  font-size: 18px;
  line-height: 1;
}

body.codex-route-home .codex-home-googlebar__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08) !important;
  color: #e8eaed !important;
  font-size: 22px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-stream-v2 {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-stream__groups {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-day-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-day-group__header {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 4px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-day-group__title {
  margin: 0;
  color: #e8eaed;
  font-size: 20px;
  font-weight: 500;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-gallery {
  grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
  grid-auto-rows: 142px;
  gap: 4px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-media-card,
body.codex-route-home .codex-home-shell-v2 .codex-home-media-card__media,
body.codex-route-home .codex-home-shell-v2 .codex-home-media-card__asset {
  border-radius: 2px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-empty-v2 {
  min-height: calc(100vh - 220px);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 32px 0;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-empty__inner {
  max-width: 560px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-empty__title {
  color: #e8eaed;
  font-size: 28px;
}

body.codex-route-home .codex-home-shell-v2 .codex-home-empty__copy {
  color: rgba(232,234,237,0.78);
}

@media (max-width: 960px) {
  body.codex-route-home .codex-home-googlebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.codex-route-home .codex-home-googlebar__actions {
    justify-content: flex-end;
  }

  body.codex-route-home .codex-home-shell-v2 .codex-home-gallery {
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
    grid-auto-rows: 118px;
  }
}

@media (max-width: 640px) {
  body.codex-route-home .codex-home-googlebar__search {
    min-height: 50px;
  }

  body.codex-route-home .codex-home-shell-v2 .codex-home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 110px;
  }
}
body.codex-route-dashboard .codex-photos-dashboard {
  padding: 20px;
}

body.codex-route-dashboard .codex-dashboard-shell-v2 {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.codex-route-dashboard .codex-dashboard-googlebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

body.codex-route-dashboard .codex-dashboard-googlebar__brand .codex-brand-lockup {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.codex-route-dashboard .codex-dashboard-googlebar__brand .codex-brand-lockup__logo {
  width: 32px;
}

body.codex-route-dashboard .codex-dashboard-googlebar__brand .codex-brand-lockup__wordmark {
  color: #f1f3f4;
  font-size: 15px;
  letter-spacing: 0.06em;
}

body.codex-route-dashboard .codex-dashboard-googlebar__search {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: #2b2b2b !important;
  color: #e8eaed !important;
  justify-content: flex-start;
  font-size: 16px;
}

body.codex-route-dashboard .codex-dashboard-googlebar__search-icon {
  font-size: 20px;
  opacity: 0.72;
}

body.codex-route-dashboard .codex-dashboard-googlebar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.codex-route-dashboard .codex-dashboard-googlebar__upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: #8ab4f8 !important;
  color: #0b1728 !important;
  font-size: 14px;
  font-weight: 600;
}

body.codex-route-dashboard .codex-dashboard-googlebar__upload-plus {
  font-size: 18px;
  line-height: 1;
}

body.codex-route-dashboard .codex-dashboard-stream {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

body.codex-route-dashboard .codex-dashboard-day-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.codex-route-dashboard .codex-dashboard-day-group__title {
  margin: 0;
  color: #e8eaed;
  font-size: 20px;
  font-weight: 500;
}

body.codex-route-dashboard .codex-dashboard-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 142px;
  gap: 4px;
}

body.codex-route-dashboard .codex-dashboard-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #171717;
}

body.codex-route-dashboard .codex-dashboard-media-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

body.codex-route-dashboard .codex-dashboard-media-card.is-wide {
  grid-column: span 2;
}

body.codex-route-dashboard .codex-dashboard-media-card.is-tall {
  grid-row: span 2;
}

body.codex-route-dashboard .codex-dashboard-media-card__asset {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

body.codex-route-dashboard .codex-dashboard-empty {
  padding: 36px 0;
}

body.codex-route-dashboard .codex-dashboard-empty__inner {
  max-width: 560px;
}

body.codex-route-dashboard .codex-dashboard-empty__title {
  margin: 0 0 10px;
  color: #e8eaed;
  font-size: 28px;
}

body.codex-route-dashboard .codex-dashboard-empty__copy {
  margin: 0;
  color: rgba(232,234,237,0.78);
  font-size: 16px;
  line-height: 1.7;
}

body.codex-route-dashboard .container[data-v-ad54b28c] .file-name,
body.codex-route-dashboard .container[data-v-ad54b28c] .file-title,
body.codex-route-dashboard .container[data-v-ad54b28c] .file-meta,
body.codex-route-dashboard .container[data-v-ad54b28c] .el-tag,
body.codex-route-dashboard .container[data-v-ad54b28c] .el-badge,
body.codex-route-dashboard .container[data-v-ad54b28c] .checkbox,
body.codex-route-dashboard .container[data-v-ad54b28c] .check-icon,
body.codex-route-dashboard .container[data-v-ad54b28c] .selection-indicator,
body.codex-route-dashboard .container[data-v-ad54b28c] .tg-tag,
body.codex-route-dashboard .container[data-v-ad54b28c] .source-tag,
body.codex-route-dashboard .container[data-v-ad54b28c] .action-buttons,
body.codex-route-dashboard .container[data-v-ad54b28c] .card-actions,
body.codex-route-dashboard .container[data-v-ad54b28c] .overlay-actions,
body.codex-route-dashboard .container[data-v-ad54b28c] .page-turn-button,
body.codex-route-dashboard .container[data-v-ad54b28c] .page-turn,
body.codex-route-dashboard .container[data-v-ad54b28c] .pagination-container {
  display: none !important;
}

@media (max-width: 960px) {
  body.codex-route-dashboard .codex-dashboard-googlebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.codex-route-dashboard .codex-dashboard-googlebar__actions {
    justify-content: flex-end;
  }

  body.codex-route-dashboard .codex-dashboard-gallery {
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
    grid-auto-rows: 118px;
  }
}

@media (max-width: 640px) {
  body.codex-route-dashboard .codex-dashboard-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 110px;
  }
}