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

* {
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, h5, h6, p,
figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
button, input, label {
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

button, input, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
}

button {
  background: transparent;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 2px solid #0f7b8a;
  outline-offset: 2px;
}

html {
  font-size: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5715;
  color: #434343;
  background-color: #f5f5f5;
  overflow-x: hidden;
  font-feature-settings: "tnum";
  font-variant: tabular-nums;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  color: #000000;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #262626;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #262626;
}

a {
  color: #0f7b8a;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a:hover {
  color: #2fa3b5;
}
a:active {
  color: #096273;
}
a:focus-visible {
  outline: 2px solid #0f7b8a;
  outline-offset: 2px;
  border-radius: 4px;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 0.875em;
  background-color: #f5f5f5;
  padding: 2px 4px;
  border-radius: 4px;
  white-space: pre-wrap;
  word-break: break-all;
}

pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
}
pre code {
  background-color: transparent;
  padding: 0;
}

::selection {
  background-color: #c0ecf1;
  color: #000000;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8c8c8c;
}

.text-muted {
  color: #8c8c8c;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.app-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.layout {
  display: flex;
  flex: auto;
  min-height: 0;
  background: #fafafa;
}
.layout.layout-has-sider {
  flex-direction: row;
  height: calc(100vh - 56px);
}

.layout-header {
  height: 56px;
  padding: 0 24px;
  line-height: 56px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10;
}
.layout-header .header-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: inherit;
}
.layout-header .header-user {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5715;
}
.layout-header .header-user__name {
  color: #595959;
  font-size: 14px;
}

.layout-sider {
  position: relative;
  background: #ffffff;
  flex: 0 0 256px;
  max-width: 256px;
  min-width: 256px;
  width: 256px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
  border-right: 1px solid #f0f0f0;
}
.layout-sider-children {
  height: 100%;
  padding: 16px 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.layout-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.page-container {
  padding: 24px;
  max-width: 1200px;
}

.menu {
  color: #434343;
  font-size: 14px;
}
.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.5;
  height: 40px;
  color: #434343;
}
.menu-item:hover {
  color: #0f7b8a;
  background-color: #fafafa;
}
.menu-item-selected {
  color: #0f7b8a;
  background-color: #e6f7f9;
  border-right: 2px solid #0f7b8a;
}
.menu-item:active {
  background-color: #e6f7f9;
}
.menu-icon {
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .layout-sider {
    flex-basis: 64px;
    max-width: 64px;
    min-width: 64px;
    width: 64px;
  }
  .menu-item {
    justify-content: center;
    padding: 8px;
  }
  .menu-item-selected {
    padding-right: 6px;
  }
  .menu-label {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  line-height: 1.5715;
  border-radius: 6px;
  outline: 0;
  height: 32px;
  padding: 0 16px;
  font-size: 14px;
}
.btn:focus-visible {
  outline: 2px solid #0f7b8a;
  outline-offset: 2px;
}
.btn:disabled, .btn--disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
.btn--primary {
  background-color: #0f7b8a;
  border-color: #0f7b8a;
  color: #ffffff;
}
.btn--primary:hover:not(:disabled) {
  background-color: #2fa3b5;
  border-color: #2fa3b5;
  color: #ffffff;
}
.btn--primary:active:not(:disabled) {
  background-color: #096273;
  border-color: #096273;
  color: #ffffff;
}
.btn--default {
  background-color: #ffffff;
  border-color: #d9d9d9;
  color: #434343;
}
.btn--default:hover:not(:disabled) {
  color: #2fa3b5;
  border-color: #2fa3b5;
}
.btn--default:active:not(:disabled) {
  color: #096273;
  border-color: #096273;
}
.btn--link {
  background-color: transparent;
  border-color: transparent;
  color: #0f7b8a;
  padding: 0;
  height: auto;
  line-height: normal;
}
.btn--link:hover:not(:disabled) {
  color: #2fa3b5;
}
.btn--link:active:not(:disabled) {
  color: #096273;
}
.btn--danger {
  color: #f5222d;
  border-color: #f5222d;
  background-color: #ffffff;
}
.btn--danger:hover:not(:disabled) {
  color: rgb(96.9442322383%, 32.4675324675%, 35.8288770053%);
  border-color: rgb(96.9442322383%, 32.4675324675%, 35.8288770053%);
}
.btn--danger:active:not(:disabled) {
  color: rgb(85.5411255411%, 3.8706391648%, 8.128342246%);
  border-color: rgb(85.5411255411%, 3.8706391648%, 8.128342246%);
}
.btn--sm {
  height: 24px;
  padding: 0 8px;
  font-size: 12px;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn__spinner {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentcolor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn--icon {
  padding: 0;
  width: 32px;
  flex-shrink: 0;
}
.btn > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-item {
  margin-bottom: 20px;
}
.form-item-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 4px;
  line-height: 1.5715;
}
.form-item-required {
  color: #f5222d;
  margin-left: 4px;
}

.input {
  box-sizing: border-box;
  padding: 4px 11px;
  color: #434343;
  font-size: 14px;
  line-height: 1.5715;
  display: inline-block;
  width: 100%;
  min-width: 0;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  transition: all 0.2s;
}
.input::placeholder {
  color: #bfbfbf;
}
.input:hover {
  border-color: #2fa3b5;
}
.input:focus {
  border-color: #2fa3b5;
  box-shadow: 0 0 0 2px rgba(15, 123, 138, 0.2);
  outline: 0;
}
.input[disabled] {
  color: #bfbfbf;
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.input--code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 13px;
  resize: vertical;
}
.input--url {
  width: 100%;
  max-width: 320px;
}
.input--select {
  width: auto;
  height: 32px;
  cursor: pointer;
}

.copy-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.copy-row + .copy-row {
  margin-top: 8px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-actions--end {
  justify-content: flex-end;
  gap: 8px;
}

.page-save-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.page-save-actions__group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-save-actions__last-built {
  font-size: 12px;
  color: #8c8c8c;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__box {
  box-sizing: border-box;
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.checkbox__box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.checkbox:hover .checkbox__box {
  border-color: #2fa3b5;
}
.checkbox__input:focus-visible + .checkbox__box {
  border-color: #2fa3b5;
  box-shadow: 0 0 0 2px rgba(15, 123, 138, 0.2);
}
.checkbox__input:checked + .checkbox__box {
  background-color: #0f7b8a;
  border-color: #0f7b8a;
}
.checkbox__input:checked + .checkbox__box::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

.summary-block > h3 {
  margin: 0 0 8px;
}
.summary-block + .summary-block {
  margin-top: 20px;
}

.summary-list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}
.summary-list > li + li {
  margin-top: 4px;
}

.relation-select {
  position: relative;
}
.relation-select__control {
  position: relative;
}
.relation-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 240px;
  overflow-y: auto;
  margin: 4px 0 0;
  padding: 4px 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.relation-select__option {
  padding: 4px 12px;
  color: #434343;
  font-size: 14px;
  line-height: 1.5715;
  cursor: pointer;
  transition: background-color 0.1s;
}
.relation-select__option:hover {
  background-color: #e6f7f9;
}
.relation-select__option--active {
  background-color: #e6f7f9;
}
.relation-select__empty {
  padding: 4px 12px;
  color: #bfbfbf;
  font-size: 14px;
  line-height: 1.5715;
}
.relation-select__selected {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 11px;
  color: #434343;
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
}
.relation-select__clear {
  padding: 0;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
}
.relation-select__clear:hover {
  color: #f5222d;
}

.table-container {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  overflow-x: auto;
}

.table {
  width: 100%;
  background: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  color: #434343;
  line-height: 1.5715;
}
.table-thead > tr > th {
  color: #000000;
  font-weight: 600;
  text-align: left;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px;
  white-space: nowrap;
}
.table-tbody > tr > td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}
.table-tbody > tr:hover > td {
  background: #fafafa;
}
.table-tbody > tr:last-child > td {
  border-bottom: none;
}
.table__th--numeric, .table__td--numeric {
  text-align: right;
}
.table__sort {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.table__sort:hover {
  color: #0f7b8a;
}
.table__sort:focus-visible {
  outline: 2px solid #0f7b8a;
  outline-offset: 2px;
  border-radius: 4px;
}
.table__sort-indicator {
  color: #bfbfbf;
  font-size: 12px;
}
.table__sort-indicator--active {
  color: #0f7b8a;
}

.table-row--clickable {
  cursor: pointer;
}
.table-row--clickable:focus-visible {
  outline: 2px solid #0f7b8a;
  outline-offset: -2px;
}

.list-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.list-toolbar__search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.list-toolbar__search-input {
  width: 280px;
}
.list-toolbar__filter {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #595959;
  font-size: 14px;
}

.url-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.asset-row--pending-delete > td {
  opacity: 0.5;
}
.asset-row--pending-delete .file-cell .input {
  text-decoration: line-through;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 8px 0;
  font-size: 14px;
  color: #595959;
}
.pagination-info {
  color: #8c8c8c;
}
.pagination-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pagination-page {
  color: #595959;
  font-weight: 500;
}

.card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.card__head {
  min-height: 48px;
  padding: 0 24px;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}
.card__head-title {
  flex: 1;
  padding: 16px 0;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  margin: 0;
}
.card__body {
  padding: 24px;
}
.card--pending-delete > .card__body {
  opacity: 0.5;
}
.card + .card {
  margin-top: 16px;
}

.section-card {
  display: block;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  padding: 24px;
}
.section-card > h2 {
  margin: 0 0 16px;
}
.section-card__footer {
  margin-top: 16px;
}
.section-card + .section-card {
  margin-top: 24px;
}

.tabs__nav {
  display: flex;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 16px;
}
.tabs__tab {
  padding: 8px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: #8c8c8c;
  border-bottom: 2px solid transparent;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.tabs__tab:hover {
  color: #0f7b8a;
}
.tabs__tab--active {
  color: #0f7b8a;
  border-bottom-color: #0f7b8a;
}
.tabs__content {
  padding-top: 8px;
}

.config-editor__title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #f0f0f0;
}
.config-editor__title:first-child {
  margin-top: 0;
}
.config-editor__subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #595959;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.page-header__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}
.page-header__actions {
  display: flex;
  gap: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.breadcrumb__link {
  color: #8c8c8c;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  color: #0f7b8a;
}
.breadcrumb__sep {
  color: #bfbfbf;
}
.breadcrumb__current {
  color: #434343;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
}
.status-badge--success {
  color: #52c41a;
  background-color: #f6ffed;
}
.status-badge--success::before {
  background-color: #52c41a;
}
.status-badge--warning {
  color: #faad14;
  background-color: #fffbe6;
}
.status-badge--warning::before {
  background-color: #faad14;
}
.status-badge--error {
  color: #f5222d;
  background-color: #fff1f0;
}
.status-badge--error::before {
  background-color: #f5222d;
}
.status-badge--default {
  color: #8c8c8c;
  background-color: #f5f5f5;
}
.status-badge--default::before {
  background-color: #bfbfbf;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.45);
}
.modal__body {
  position: relative;
}
.modal__image {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.45);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.modal__close:hover {
  background-color: rgba(0, 0, 0, 0.65);
}

.confirm-dialog {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.45);
}
.confirm-dialog__body {
  min-width: 320px;
  max-width: 90vw;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.confirm-dialog__message {
  margin: 0 0 24px;
  color: #262626;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.confirm-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.thumbnail {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.thumbnail:hover {
  border-color: #2fa3b5;
}

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f5f5f5;
  z-index: 1;
}

.login-card {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  padding: 40px;
}
.login-card .form-item:last-of-type {
  margin-bottom: 24px;
}
.login-card .btn {
  height: 40px;
  font-size: 16px;
}

.login-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin: 0 0 32px;
}

.snackbar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1070;
  max-width: 80vw;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5715;
  border-radius: 6px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  animation: snackbar-fade-in 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}
.snackbar--success {
  background-color: #52c41a;
}
.snackbar--error {
  background-color: #f5222d;
}
@media (min-width: 1024px) {
  .snackbar {
    left: auto;
    right: 24px;
    transform: none;
    animation-name: snackbar-fade-in-desktop;
  }
}

@keyframes snackbar-fade-in {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes snackbar-fade-in-desktop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skeleton {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton__row {
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f5f5f5 25%, #f0f0f0 37%, #f5f5f5 63%);
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}
.skeleton__row--header {
  width: 40%;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton__row {
    animation: none;
    background: #f5f5f5;
  }
}
.empty-state {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.empty-state__title {
  color: #595959;
  font-weight: 500;
}
.empty-state__hint {
  color: #8c8c8c;
  font-size: 12px;
}
.empty-state__action {
  margin-top: 8px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  color: #434343;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.stat-card:hover {
  color: #434343;
  border-color: #5fc5d3;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.stat-card:focus-visible {
  outline: 2px solid #0f7b8a;
  outline-offset: 2px;
}
.stat-card__label {
  font-size: 14px;
  color: #8c8c8c;
}
.stat-card__value {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  font-variant-numeric: tabular-nums;
}

.status-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.status-summary__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-summary__count {
  font-size: 20px;
  font-weight: 600;
  color: #262626;
  font-variant-numeric: tabular-nums;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#app {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.loading-container .loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f0f0f0;
  border-top-color: #0f7b8a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.error-message {
  color: #f5222d;
  font-size: 12px;
  margin-top: 8px;
}
