.dashboard-toolbar {
    margin-top: 10px;
    display: block;
}

.dashboard-ui-shell {
    transition: opacity 220ms ease, transform 220ms ease;
}

.dashboard-ui-shell.is-dashboard-ui-hiding {
    opacity: 0;
    transform: translateY(-8px);
}

.dashboard-toolbar-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(51, 95, 152, 0.14), transparent 72%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 255, 0.98));
    box-shadow: 0 12px 30px rgba(27, 44, 77, 0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.dashboard-toolbar-card--combined {
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(38, 116, 91, 0.1), transparent 72%),
        radial-gradient(220px 120px at 0% 100%, rgba(51, 95, 152, 0.1), transparent 72%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 255, 0.98));
}

.dashboard-toolbar-copy--combined {
    max-width: 780px;
    padding-inline: 2px;
}

.dashboard-toolbar-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-toolbar-copy h2,
.dashboard-customize-panel__head h2 {
    margin: 0;
    font-size: 1rem;
}

.dashboard-toolbar-copy h3,
.dashboard-customize-panel__head h3 {
    margin: 0;
    font-size: 0.96rem;
}

.dashboard-toolbar-copy p,
.dashboard-customize-panel__head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.85;
}

.dashboard-toolbar-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    border-radius: var(--radius);
    background: rgba(51, 95, 152, 0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 9px;
}

.dashboard-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dashboard-toolbar-btn {
    border: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), #4873ac);
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    padding: 10px 14px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(51, 95, 152, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.dashboard-toolbar-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(51, 95, 152, 0.24);
}

.dashboard-toolbar-btn--ghost {
    background: rgba(51, 95, 152, 0.08);
    color: var(--primary);
    box-shadow: none;
}

.dashboard-toolbar-btn--ghost:hover {
    box-shadow: none;
}

.dashboard-toolbar-summary {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.7;
}

.dashboard-toolbar-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 10px;
}

.dashboard-section {
    border: 1px solid rgba(51, 95, 152, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    padding: 10px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-section--smart {
    position: relative;
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(38, 116, 91, 0.12), transparent 72%),
        rgba(255, 255, 255, 0.82);
}

.dashboard-smart-alerts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 0;
}

.dashboard-smart-alerts__badge {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background: rgba(116, 127, 150, 0.12);
    color: var(--muted);
    padding: 5px 10px;
    font-size: 0.74rem;
    font-weight: 700;
}

.dashboard-smart-alerts .dashboard-toolbar-btn {
    align-self: flex-start;
}

.dashboard-smart-alerts__toggles {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.dashboard-smart-alerts__badge.is-blocked {
    background: rgba(160, 87, 27, 0.14);
    color: #9c5c19;
}

.dashboard-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.7;
}

.dashboard-switch input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.dashboard-customize-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-theme-picker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
}

.dashboard-theme-picker__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dashboard-theme-picker__copy strong {
    font-size: 0.86rem;
    color: var(--text);
}

.dashboard-theme-picker__copy small {
    font-size: 0.75rem;
    color: var(--muted);
}

.dashboard-theme-picker__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.dashboard-theme-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(51, 95, 152, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.dashboard-theme-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(51, 95, 152, 0.34);
}

.dashboard-theme-btn.is-active {
    background: var(--primary-soft);
    border-color: rgba(51, 95, 152, 0.3);
    color: var(--primary);
    box-shadow: 0 8px 18px rgba(51, 95, 152, 0.12);
}

.dashboard-theme-btn__icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.dashboard-theme-btn:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 2px;
}

.site-settings-choice-field {
    display: grid;
    gap: 8px;
    position: relative;
    overflow: visible;
}

.site-settings-select {
    position: relative;
}

.site-settings-select__trigger {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--text);
    font: inherit;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: right;
}

.site-settings-select__icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.site-settings-select.is-open .site-settings-select__icon {
    transform: rotate(180deg);
}

.site-settings-select__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 30;
    display: grid;
    gap: 4px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(30, 47, 80, 0.16);
    max-height: 220px;
    overflow: auto;
}

.site-settings-select__menu[hidden] {
    display: none !important;
}

.site-settings-select__option {
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    font: inherit;
    padding: 9px 10px;
    text-align: right;
    cursor: pointer;
}

.site-settings-select__option:hover,
.site-settings-select__option.is-selected {
    background: rgba(51, 95, 152, 0.1);
    color: var(--primary);
}

.site-settings-feed-picker {
    display: grid;
    gap: 10px;
}

.site-settings-feed-picker__head {
    display: grid;
    gap: 4px;
}

.site-settings-feed-picker__head strong {
    font-size: 0.9rem;
    color: var(--text);
}

.site-settings-feed-picker__head small {
    font-size: 0.76rem;
    color: var(--muted);
}

.site-settings-feed-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.site-settings-feed-toggle,
.site-settings-module-toggle {
    min-height: 48px;
}

.dashboard-customize-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.dashboard-customize-panel__head > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-customize-list {
    display: grid;
    gap: 10px;
}

.dashboard-customize-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    padding: 9px 10px;
}

.dashboard-customize-item[aria-hidden="true"] {
    opacity: 0.62;
}

.dashboard-customize-item__main {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.dashboard-customize-item__main strong {
    font-size: 0.86rem;
    line-height: 1.7;
}

.dashboard-customize-item__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-order-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    font: inherit;
    cursor: pointer;
}

.dashboard-order-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.homepage-dashboard {
    margin-top: 12px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}

.dashboard-module {
    min-width: 0;
}

.dashboard-module--full {
    grid-column: 1 / -1;
}

.dashboard-module.is-user-hidden {
    display: none !important;
}

.loop-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.loop-card-link:hover {
    transform: translateY(-2px);
}

.loop-card-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--ring);
}

.is-loop-hidden {
    display: none !important;
}

.alert-loop-card,
.weather-loop-card,
.crypto-loop-card,
.world-time-loop-card,
.disaster-loop-card {
    border-radius: var(--radius);
    overflow: hidden;
}

.alert-loop-card {
    border: 1px solid #e7c1c1;
    background:
        radial-gradient(260px 140px at 100% 0%, rgba(200, 43, 43, 0.16), transparent 72%),
        linear-gradient(145deg, #fff4f4 0%, #ffe7e7 100%);
    box-shadow: 0 12px 28px rgba(103, 20, 20, 0.12);
}

.weather-loop-card {
    margin-top: 10px;
    border: 1px solid var(--line);
    background:
        radial-gradient(200px 120px at 100% 0%, rgba(51, 95, 152, 0.13), transparent 70%),
        linear-gradient(145deg, #ffffff 0%, #f1f6ff 100%);
    box-shadow: 0 10px 24px rgba(27, 44, 77, 0.09);
}

.crypto-loop-card {
    margin-top: 10px;
    border: 1px solid #d3e5e5;
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(23, 135, 108, 0.15), transparent 70%),
        linear-gradient(145deg, #ffffff 0%, #f2fbfa 100%);
    box-shadow: 0 10px 24px rgba(21, 84, 72, 0.08);
}

.world-time-loop-card {
    margin-top: 10px;
    border: 1px solid #ddd7ef;
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(85, 76, 180, 0.14), transparent 70%),
        linear-gradient(145deg, #ffffff 0%, #f6f4ff 100%);
    box-shadow: 0 10px 24px rgba(52, 44, 99, 0.08);
}

.disaster-loop-card {
    margin-top: 10px;
    border: 1px solid #e6d2d2;
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(180, 60, 60, 0.12), transparent 70%),
        linear-gradient(145deg, #ffffff 0%, #fff6f6 100%);
    box-shadow: 0 10px 24px rgba(77, 27, 27, 0.08);
}

.alert-loop-window,
.weather-loop-window,
.crypto-loop-window,
.world-time-loop-window,
.disaster-loop-window {
    position: relative;
    min-height: 58px;
    padding: 8px 10px;
}

.alert-loop-window {
    min-height: 64px;
    padding: 9px 12px;
}

.alert-loop-item,
.weather-loop-item,
.crypto-loop-item,
.world-time-loop-item,
.disaster-loop-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    opacity: 0;
    transform: translateY(22px);
    transition: transform 620ms ease, opacity 620ms ease;
    white-space: nowrap;
}

.alert-loop-item {
    inset: 9px 12px;
    gap: 10px;
}

.weather-loop-item,
.crypto-loop-item,
.world-time-loop-item,
.disaster-loop-item {
    inset: 8px 10px;
}

.alert-loop-item.is-current,
.weather-loop-item.is-current,
.crypto-loop-item.is-current,
.world-time-loop-item.is-current,
.disaster-loop-item.is-current {
    opacity: 1;
    transform: translateY(0);
}

.alert-loop-item.is-next,
.weather-loop-item.is-next,
.crypto-loop-item.is-next,
.world-time-loop-item.is-next,
.disaster-loop-item.is-next {
    opacity: 0;
    transform: translateY(22px);
}

.alert-loop-item.is-entering,
.weather-loop-item.is-entering,
.crypto-loop-item.is-entering,
.world-time-loop-item.is-entering,
.disaster-loop-item.is-entering {
    opacity: 1;
    transform: translateY(0);
}

.alert-loop-item.is-leaving,
.weather-loop-item.is-leaving,
.crypto-loop-item.is-leaving,
.world-time-loop-item.is-leaving,
.disaster-loop-item.is-leaving {
    opacity: 0;
    transform: translateY(-22px);
}

.alert-loop-badge,
.weather-loop-city,
.crypto-loop-symbol,
.world-time-loop-city,
.disaster-loop-type {
    border-radius: var(--radius);
    padding: 4px 9px;
}

.alert-loop-badge {
    font-weight: 800;
    color: #fff7f7;
    background: #b91c1c;
    border: 1px solid #991b1b;
    padding-inline: 10px;
}

.alert-loop-title {
    color: #641919;
    font-weight: 800;
    font-size: 0.92rem;
}

.alert-loop-message {
    margin-right: auto;
    color: #7b2f2f;
    font-size: 0.84rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.weather-loop-city {
    font-weight: 700;
    color: #1e365a;
    background: #e7effb;
    border: 1px solid #cfdcf2;
}

.weather-loop-text {
    color: #2f4d78;
    font-size: 0.84rem;
}

.weather-loop-temp {
    color: #1f3557;
    font-weight: 700;
    font-size: 0.88rem;
}

.weather-loop-meta {
    color: var(--muted);
    font-size: 0.8rem;
}

.weather-loop-aqi {
    margin-right: auto;
    font-size: 0.78rem;
    border: 1px solid #d2def2;
    border-radius: var(--radius);
    background: #f6f9ff;
    color: #29466f;
    padding: 4px 8px;
}

.crypto-loop-symbol {
    font-weight: 800;
    color: #125247;
    background: #dff6f0;
    border: 1px solid #c3ece2;
}

.crypto-loop-name {
    color: #456d6b;
    font-size: 0.81rem;
}

.crypto-loop-price {
    color: #13414c;
    font-weight: 700;
    font-size: 0.88rem;
}

.crypto-loop-change {
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: var(--radius);
    padding: 4px 8px;
}

.crypto-loop-change.up {
    color: #0f5132;
    background: #dcfce7;
}

.crypto-loop-change.down {
    color: #991b1b;
    background: #fee2e2;
}

.crypto-loop-range {
    margin-right: auto;
    color: #4d666f;
    font-size: 0.76rem;
}

.world-time-loop-city {
    font-weight: 800;
    color: #3b2f73;
    background: #eee9ff;
    border: 1px solid #ddd3ff;
}

.world-time-loop-country,
.world-time-loop-offset {
    color: #625a8e;
    font-size: 0.8rem;
}

.world-time-loop-time {
    color: #241b51;
    font-weight: 700;
    font-size: 0.92rem;
}

.world-time-loop-zone {
    margin-right: auto;
    color: #655f83;
    font-size: 0.76rem;
}

.disaster-loop-type {
    font-weight: 700;
    color: #5e1818;
    background: #fde8e8;
    border: 1px solid #f7caca;
}

.disaster-loop-name {
    color: #4f2222;
    font-size: 0.84rem;
}

.disaster-loop-alert {
    color: #7b1f1f;
    font-weight: 700;
    font-size: 0.8rem;
}

.disaster-loop-severity {
    margin-right: auto;
    color: #6f3b3b;
    font-size: 0.77rem;
}

html[data-theme="dark"] .alert-loop-card,
html[data-theme="dark"] .weather-loop-card,
html[data-theme="dark"] .crypto-loop-card,
html[data-theme="dark"] .world-time-loop-card,
html[data-theme="dark"] .disaster-loop-card {
    border-color: var(--line) !important;
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(134, 174, 232, 0.14), transparent 72%),
        linear-gradient(160deg, rgba(18, 29, 45, 0.98), rgba(14, 22, 35, 0.96)) !important;
    color: var(--text);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .alert-loop-badge {
    background: #b73f4d;
    border-color: #8e2f3b;
    color: #fff2f3;
}

html[data-theme="dark"] .weather-loop-city,
html[data-theme="dark"] .crypto-loop-symbol,
html[data-theme="dark"] .world-time-loop-city,
html[data-theme="dark"] .disaster-loop-type {
    background: rgba(23, 36, 54, 0.94) !important;
    border-color: var(--line) !important;
    color: var(--text) !important;
}

html[data-theme="dark"] .alert-loop-title,
html[data-theme="dark"] .alert-loop-message,
html[data-theme="dark"] .weather-loop-text,
html[data-theme="dark"] .weather-loop-temp,
html[data-theme="dark"] .weather-loop-meta,
html[data-theme="dark"] .weather-loop-aqi,
html[data-theme="dark"] .crypto-loop-name,
html[data-theme="dark"] .crypto-loop-price,
html[data-theme="dark"] .crypto-loop-range,
html[data-theme="dark"] .world-time-loop-country,
html[data-theme="dark"] .world-time-loop-offset,
html[data-theme="dark"] .world-time-loop-time,
html[data-theme="dark"] .world-time-loop-zone,
html[data-theme="dark"] .disaster-loop-name,
html[data-theme="dark"] .disaster-loop-alert,
html[data-theme="dark"] .disaster-loop-severity {
    color: var(--text) !important;
}

html[data-theme="dark"] .weather-loop-aqi {
    background: rgba(15, 26, 41, 0.92);
    border-color: var(--line);
}


@media (max-width: 680px) {
    .homepage-dashboard {
        gap: 10px;
    }

    .alert-loop-window {
        min-height: 108px;
        padding: 9px 10px;
    }

    .alert-loop-item {
        inset: 9px 10px;
        display: grid;
        grid-template-columns: auto 1fr;
        row-gap: 6px;
        column-gap: 8px;
        white-space: normal;
        align-items: start;
        align-content: start;
        line-height: 1.55;
    }

    .alert-loop-badge {
        grid-column: 1;
        align-self: start;
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .alert-loop-title {
        grid-column: 2;
        font-size: 0.82rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .alert-loop-message {
        grid-column: 1 / -1;
        margin-right: 0;
        font-size: 0.75rem;
        color: #8a3b3b;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .dashboard-customize-panel__head,
    .dashboard-customize-item,
    .dashboard-theme-picker {
        flex-direction: column;
        align-items: stretch;
    }

    .site-settings-module-list,
    .site-settings-feed-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-customize-item__actions,
    .dashboard-toolbar-actions {
        justify-content: space-between;
    }

    .dashboard-smart-alerts__toggles {
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .dashboard-toolbar-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

html[data-theme="dark"] .dashboard-toolbar-card,
html[data-theme="dark"] .dashboard-toolbar-card--combined,
html[data-theme="dark"] .smart-refresh {
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(134, 174, 232, 0.18), transparent 72%),
        linear-gradient(160deg, rgba(19, 30, 46, 0.98), rgba(14, 22, 35, 0.96));
}

html[data-theme="dark"] .dashboard-toolbar-card--combined {
    background:
        radial-gradient(260px 160px at 100% 0%, rgba(68, 182, 140, 0.16), transparent 72%),
        radial-gradient(260px 160px at 0% 100%, rgba(134, 174, 232, 0.14), transparent 72%),
        linear-gradient(160deg, rgba(19, 30, 46, 0.99), rgba(12, 21, 33, 0.98));
    border-color: #28415b !important;
}

html[data-theme="dark"] .dashboard-section,
html[data-theme="dark"] .dashboard-section--smart {
    background: rgba(18, 29, 45, 0.94);
    border-color: var(--line);
}

html[data-theme="dark"] .dashboard-section--smart {
    background:
        radial-gradient(220px 120px at 100% 0%, rgba(68, 182, 140, 0.14), transparent 72%),
        linear-gradient(160deg, rgba(18, 29, 45, 0.98), rgba(14, 22, 35, 0.96));
}

html[data-theme="dark"] .site-title-home,
html[data-theme="dark"] .site-title,
html[data-theme="dark"] .site-head-action,
html[data-theme="dark"] .head-menu-toggle,
html[data-theme="dark"] .dashboard-toolbar-eyebrow,
html[data-theme="dark"] .legal-footer a,
html[data-theme="dark"] .site-head-action svg,
html[data-theme="dark"] .head-drawer-nav__social {
    color: var(--primary);
}

html[data-theme="dark"] .head-drawer-nav a,
html[data-theme="dark"] .dashboard-toolbar-copy p,
html[data-theme="dark"] .dashboard-customize-panel__head p,
html[data-theme="dark"] .smart-refresh__meta,
html[data-theme="dark"] .query-info {
    color: var(--muted);
}

html[data-theme="dark"] .head-menu-toggle,
html[data-theme="dark"] .site-head-action,
html[data-theme="dark"] .search-row input,
html[data-theme="dark"] .search-row button,
html[data-theme="dark"] .dashboard-toolbar-summary,
html[data-theme="dark"] .dashboard-toolbar-btn,
html[data-theme="dark"] .dashboard-switch,
html[data-theme="dark"] .dashboard-customize-item,
html[data-theme="dark"] .dashboard-theme-picker,
html[data-theme="dark"] .site-settings-module-toggle,
html[data-theme="dark"] .site-settings-feed-toggle,
html[data-theme="dark"] .dashboard-order-btn,
html[data-theme="dark"] .site-settings-select__trigger,
html[data-theme="dark"] .site-settings-select__menu,
html[data-theme="dark"] .dashboard-theme-btn {
    background: rgba(23, 36, 54, 0.96);
    border-color: var(--line);
    color: var(--text);
}

html[data-theme="dark"] .dashboard-theme-btn.is-active {
    background: rgba(25, 47, 77, 0.98);
    border-color: rgba(134, 174, 232, 0.34);
    color: #d7e6ff;
}

html[data-theme="dark"] .dashboard-customize-item__actions {
    background: transparent;
}

html[data-theme="dark"] .dashboard-order-btn:hover:not(:disabled) {
    background: rgba(34, 51, 74, 0.98);
    border-color: rgba(116, 156, 212, 0.3);
    color: #f6fbff;
}

html[data-theme="dark"] .dashboard-order-btn:disabled {
    background: rgba(19, 28, 42, 0.72);
    color: rgba(177, 193, 214, 0.42);
    border-color: rgba(86, 107, 136, 0.28);
}
