body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    margin: 0;
    gap: .5vh;
    /* padding: 6vh 4vh; */
    user-select: none;
    /* background-image: url("img/bg.png"); */
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    transition: 1s ease-out;
    font-family: 'Montserrat';
    /* font-family: "Manrope", sans-serif; */
    /* font-family: "Inter", sans-serif; */
}

body::-webkit-scrollbar {
    display: none;
    margin: 0;
}


::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    padding: 15px;
}

::-webkit-scrollbar-track {
    background: #ffffff00;
    border-radius: 12px;
}

::-webkit-scrollbar-thumb {
    background: #0c0c0cc5;
    border-radius: 12px;
    border: 1px solid #272727;
    width: 2px;
    height: 2px;
}


:root {
    --statusbar-bg: #565353;
    --statusbar-inline: #ededef44;
    --page-bg-color: #25252554;
    --box-shadow-color: #b2b5be2d;
    --box-bg-color: rgb(29 29 29 / 5%);
    --box-bg2-color: #5035ff;
    --text-color: rgb(245, 245, 245);
    --hover-bg: #0df188;
    --hover-color: #00FFD1;
    --decline-hover-bg: #f11c0d;
    --hover-border: #7effc4;
    --button-color: #4cdf9b;
    --box-color: #2e2e2e26;
    /* Shell klasör kartı ile aynı kabuk (shell-textures-folder-card / admin kutuları) */
    --shell-folder-card-bg: linear-gradient(145deg, rgba(22, 28, 42, 0.65), rgba(14, 18, 30, 0.45));
    --shell-folder-card-border: 1px solid rgba(255, 255, 255, 0.05);
    --shell-folder-card-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.15);
    --shell-folder-card-radius: 12px;
    --shell-folder-card-bg-hover: linear-gradient(145deg, rgba(30, 38, 56, 0.75), rgba(18, 24, 38, 0.55));
    --shell-folder-card-border-hover: rgba(130, 165, 255, 0.35);
    --shell-folder-card-shadow-hover: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 16px rgba(0, 0, 0, 0.25);
    /* Admin sağ panel kutuları — shell kart ile aynı yüzey */
    --admin-panel-box-surface-bg: var(--shell-folder-card-bg);
    --admin-panel-box-border-color: rgba(255, 255, 255, 0.05);
    --admin-panel-box-border: var(--shell-folder-card-border);
    --admin-panel-box-radius: var(--shell-folder-card-radius);
    --admin-panel-box-shadow: var(--shell-folder-card-shadow);
    --admin-panel-box-padding: 12px 14px;
    --admin-panel-box-accent-info: rgba(100, 155, 255, 0.5);
    --admin-panel-box-accent-warn: rgba(255, 200, 120, 0.65);
}

/* hover effect 
 background: #0df188;
border: 1px solid #7effc4; */

* {
    box-sizing: border-box;
    font-family: 'Montserrat';
    /* font-family: "Manrope", sans-serif; */
}

input {
    color: var(--text-color);
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid #ffffff17;
    text-align: center;
}

.bg {
    width: 100%;
    height: 100%;
    gap: .5vh;
}

.general-input {
    outline: none;
    border: none;
    background: transparent;
    border-bottom: 1px solid gray;
}

#item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.item-image {
    width: 50px;
    height: 50px;
    margin: 0 5px;
    object-fit: contain;
}

/* all questions */

.all-question-wrapper {
    height: calc(100% + 1vh);
    width: calc(100% + 1vh);
    background-color: rgba(0, 0, 0, 0.336);
    z-index: -1;
    position: absolute;
    /* margin-top: -4%; */
    display: block;
    color: #ffffffd1;
    z-index: 99999999;
    display: none;
}

.all-question-inwrapper {
    text-align: center;
    border-radius: 17px;
    width: fit-content;
    height: 20%;
    margin: 26rem auto;
    padding: 0px 20px;
}

.all-question-box {
    width: 41%;
    height: 32%;
    background-color: var(--box-bg-color);
    margin: 20% auto;
    text-align: center;
    border-radius: 8px;
}

.all-question-icon {
    width: 100%;
    height: 28%;
    font-size: 5vh;
    margin-top: 4%;
    position: relative;
    padding: 4px;
    color: #f55151;
}

.all-question-header {
    font-size: 2vh;
    font-weight: 700;
    height: 12%;
    margin-top: 2%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.all-question-text {
    text-overflow: ellipsis;
    overflow: hidden;
    height: 19%;
    margin-bottom: -2vh;
}


.all-question-label {
    width: 100%;
    height: 13%;
    font-size: 1.3vh;
    font-weight: 400;
}

.all-question-boxes {
    width: 100%;
    height: 17%;
    display: flex;
    margin-top: 5%;
}

.all-question-box {
    margin: 0 auto;
    background: var(--page-bg-color);
    color: var(--text-color);
    width: 26%;
    height: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 9px;
    transition: .1s all;
}

.all-question-box-confirm:hover {
    background-color: var(--hover-bg);
    cursor: pointer;
}

.all-question-box-cancel:hover {
    background-color: var(--decline-hover-bg);
    cursor: pointer;
}

/* ██╗          ██╗     ███████╗███████╗████████╗     ██████╗ ██████╗ ██████╗ ███╗   ██╗███████╗██████╗     ██████╗  ██████╗ ██╗  ██╗   ██╗███████╗ ██████╗ ███╗   ██╗███████╗    ███████╗███████╗████████╗████████╗██╗███╗   ██╗ ██████╗ ███████╗             ██╗ */
/* ██╔╝▄ ██╗▄    ██║     ██╔════╝██╔════╝╚══██╔══╝    ██╔════╝██╔═══██╗██╔══██╗████╗  ██║██╔════╝██╔══██╗    ██╔══██╗██╔═══██╗██║  ╚██╗ ██╔╝╚══███╔╝██╔═══██╗████╗  ██║██╔════╝    ██╔════╝██╔════╝╚══██╔══╝╚══██╔══╝██║████╗  ██║██╔════╝ ██╔════╝    ▄ ██╗▄  ██╔╝ */
/* ██╔╝  ████╗    ██║     █████╗  █████╗     ██║       ██║     ██║   ██║██████╔╝██╔██╗ ██║█████╗  ██████╔╝    ██████╔╝██║   ██║██║   ╚████╔╝   ███╔╝ ██║   ██║██╔██╗ ██║█████╗      ███████╗█████╗     ██║      ██║   ██║██╔██╗ ██║██║  ███╗███████╗     ████╗ ██╔╝  */
/* ██╔╝  ▀╚██╔▀    ██║     ██╔══╝  ██╔══╝     ██║       ██║     ██║   ██║██╔══██╗██║╚██╗██║██╔══╝  ██╔══██╗    ██╔═══╝ ██║   ██║██║    ╚██╔╝   ███╔╝  ██║   ██║██║╚██╗██║██╔══╝      ╚════██║██╔══╝     ██║      ██║   ██║██║╚██╗██║██║   ██║╚════██║    ▀╚██╔▀██╔╝   */
/* ██╔╝     ╚═╝     ███████╗███████╗██║        ██║       ╚██████╗╚██████╔╝██║  ██║██║ ╚████║███████╗██║  ██║    ██║     ╚██████╔╝███████╗██║   ███████╗╚██████╔╝██║ ╚████║███████╗    ███████║███████╗   ██║      ██║   ██║██║ ╚████║╚██████╔╝███████║      ╚═╝██╔╝    */
/* ╚═╝              ╚══════╝╚══════╝╚═╝        ╚═╝        ╚═════╝ ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═══╝╚══════╝╚═╝  ╚═╝    ╚═╝      ╚═════╝ ╚══════╝╚═╝   ╚══════╝ ╚═════╝ ╚═╝  ╚═══╝╚══════╝    ╚══════╝╚══════╝   ╚═╝      ╚═╝   ╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚══════╝         ╚═╝     */


.left-corner-polyzone-settings {
    display: none;
}


/* ██╗          ██╗     █████╗ ██████╗ ███████╗ █████╗      ██████╗██████╗ ███████╗ █████╗ ████████╗ ██████╗ ██████╗              ██╗ */
/* ██╔╝▄ ██╗▄    ██║    ██╔══██╗██╔══██╗██╔════╝██╔══██╗    ██╔════╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝██╔═══██╗██╔══██╗    ▄ ██╗▄  ██╔╝ */
/* ██╔╝  ████╗    ██║    ███████║██████╔╝█████╗  ███████║    ██║     ██████╔╝█████╗  ███████║   ██║   ██║   ██║██████╔╝     ████╗ ██╔╝  */
/* ██╔╝  ▀╚██╔▀    ╚═╝    ██╔══██║██╔══██╗██╔══╝  ██╔══██║    ██║     ██╔══██╗██╔══╝  ██╔══██║   ██║   ██║   ██║██╔══██╗    ▀╚██╔▀██╔╝   */
/* ██╔╝     ╚═╝     ██╗    ██║  ██║██║  ██║███████╗██║  ██║    ╚██████╗██║  ██║███████╗██║  ██║   ██║   ╚██████╔╝██║  ██║      ╚═╝██╔╝    */
/* ╚═╝              ╚═╝    ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝     ╚═════╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝   ╚═╝    ╚═════╝ ╚═╝  ╚═╝         ╚═╝     */

.admin-menu-wrapper {
    width: min(1680px, 98vw);
    height: min(940px, 93vh);
    margin: 2.5vh auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(155deg, rgba(13, 15, 22, 0.96), rgba(8, 10, 15, 0.90));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease;
    animation: adminMenuEnter 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.admin-menu-wrapper.is-closing {
    animation: adminMenuExit 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards !important;
}

@keyframes adminMenuEnter {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes adminMenuExit {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }
}

.admin-menu-wrapper.is-mouse-dimmed {
    opacity: 0.72;
}

.admin-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 319px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    color: #f2f6ff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    z-index: 4;
}

.admin-menu-header i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.admin-menu-left-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 19%;
    height: 100%;
    padding: 88px 14px 14px 14px;
    background: rgba(10, 12, 18, 0.92);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.admin-menu-left-header {
    text-align: left;
    color: #97a1b8;
    font-weight: 500;
    padding: 0 10px;
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-menu-button-wrapper {
    width: 100%;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu-button i {
    margin-right: 10px;
    width: 14px;
    text-align: center;
}

.admin-menu-button {
    color: #9ca7be;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
}

.admin-menu-button:first-child {
    margin-top: 0;
}

.admin-menu-button:hover {
    color: #f2f6ff;
    cursor: pointer;
    background: rgba(86, 131, 255, 0.18);
    box-shadow: none;
    filter: none;
}

.admin-menu-button-active {
    color: #ffffff;
    background: rgba(72, 120, 255, 0.28);
    border: 1px solid rgba(104, 149, 255, 0.45);
    box-shadow: none;
}

.webhook-admin-wrapper {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    color: #e2e6ef;
    box-sizing: border-box;
}

.webhook-admin-wrapper .webhook-admin-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 8px 10px 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(88, 101, 242, 0.45) rgba(255, 255, 255, 0.06);
}

.webhook-admin-wrapper .webhook-admin-hero {
    flex: 0 0 auto;
    gap: 18px;
}

.webhook-admin-wrapper .webhook-admin-card {
    flex: 0 0 auto;
    width: 100%;
    min-height: auto;
    overflow: visible;
    box-sizing: border-box;
}

.webhook-admin-preview {
    flex: 0 0 min(420px, 42%);
    min-width: 300px;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 5px solid #e74c3c;
    background: #2b2d31;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    color: #dbdee1;
}

.webhook-preview-discord {
    margin-bottom: 8px;
    color: #949ba4;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.webhook-preview-title {
    margin-bottom: 12px;
    color: #f2f3f5;
    font-size: 15px;
    font-weight: 800;
}

.webhook-preview-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.webhook-preview-fields div {
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.webhook-preview-fields b,
.webhook-preview-fields span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.webhook-preview-fields b {
    color: #f2f3f5;
    font-size: 11px;
}

.webhook-preview-fields span {
    margin-top: 4px;
    color: #b5bac1;
    font-size: 12px;
}

.webhook-admin-url-grid,
.webhook-admin-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.webhook-admin-row,
.webhook-color-row {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.webhook-admin-row-head,
.webhook-color-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.webhook-admin-row-head {
    justify-content: space-between;
    margin-bottom: 8px;
    min-width: 0;
}

.webhook-admin-row-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 800;
}

.webhook-admin-row code {
    flex: 0 0 auto;
    max-width: 42%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.webhook-admin-url,
.webhook-color-hex,
.webhook-preview-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
}

.webhook-admin-row-hint,
.webhook-admin-muted {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}

.webhook-color-preview-dot {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.webhook-color-meta {
    min-width: 0;
    flex: 1;
}

.webhook-color-meta strong,
.webhook-color-meta span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.webhook-color-meta strong {
    color: rgba(255, 255, 255, 0.95);
}

.webhook-color-meta span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.webhook-color-picker {
    width: 42px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
}

.webhook-color-hex {
    width: 88px;
    flex: 0 0 88px;
    text-transform: uppercase;
}

.webhook-admin-wrapper .upgrades-admin-footer {
    position: sticky;
    bottom: 0;
    z-index: 5;
    padding: 10px 0 0;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(10, 14, 22, 0), rgba(10, 14, 22, 0.92) 34%, rgba(10, 14, 22, 0.98));
}

.webhook-admin-wrapper .job-lists-btn-save {
    min-height: 42px;
}

.admin-menu-route-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

@keyframes admin-route-subbtn-in {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.admin-menu-route-dropdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 0 10px;
    padding: 0 4px 0 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    border-left: 2px solid transparent;
    transition:
        max-height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.28s ease,
        padding 0.32s ease,
        margin 0.32s ease,
        border-color 0.25s ease;
}

.admin-menu-route-dropdown.is-open {
    max-height: min(52vh, 440px);
    opacity: 1;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
    margin-top: 4px;
    margin-bottom: 0;
    padding: 4px 4px 8px 8px;
    border-left-color: rgba(104, 149, 255, 0.35);
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.admin-menu-route-dropdown.is-open .admin-menu-route-subbtn {
    animation: admin-route-subbtn-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(min(var(--admin-route-stagger, 0), 20) * 0.04s);
}

.admin-menu-route-subbtn {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    color: #8b96ad;
    text-align: left;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    width: 100%;
    line-height: 1.25;
}

.admin-menu-route-subbtn:hover {
    color: #e8eeff;
    background: rgba(86, 131, 255, 0.18);
    transform: translateX(2px);
}

.admin-menu-route-subbtn:focus-visible {
    outline: 2px solid rgba(130, 165, 255, 0.7);
    outline-offset: 1px;
}

.admin-menu-route-subbtn--active {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, rgba(72, 120, 255, 0.28), rgba(72, 120, 255, 0.08));
    box-shadow: inset 0 0 0 1px rgba(130, 165, 255, 0.4), 0 0 14px rgba(72, 120, 255, 0.22);
    text-shadow: 0 0 12px rgba(160, 195, 255, 0.55);
}

.admin-menu-route-subbtn--draft {
    cursor: default;
    pointer-events: none;
}

.admin-menu-route-subbtn--empty {
    cursor: default;
    pointer-events: none;
    color: #5c667a;
    font-size: 11px;
    font-weight: 400;
    font-style: italic;
    background: transparent;
}

.admin-menu-route-subbtn--empty:hover {
    transform: none;
    color: #5c667a;
    background: transparent;
}

.admin-menu-right-wrapper {
    position: absolute;
    top: 0;
    left: 19%;
    width: 81%;
    height: 100%;
    margin: 0;
    padding: 14px 16px;
    overflow: hidden;
    background: rgba(14, 16, 22, 0.88);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

/* Admin — Shell textures (file list + hover preview) */
.shell-textures-admin-wrapper {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    color: #e2e6ef;
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
}

.shell-textures-upload-progress {
    position: absolute;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(6, 10, 18, 0.76);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.shell-textures-upload-progress-card {
    min-width: 260px;
    max-width: min(92%, 420px);
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(16, 20, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.42);
    box-sizing: border-box;
}

.shell-textures-upload-progress-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(245, 248, 255, 0.96);
}

.shell-textures-upload-progress-track {
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin: 14px 0 10px;
}

.shell-textures-upload-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #5eead4, #34d399);
    transition: width 0.28s ease;
}

.shell-textures-upload-progress-sub {
    font-size: 11px;
    line-height: 1.35;
    color: rgba(226, 230, 239, 0.68);
    word-break: break-all;
}

.shell-textures-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    min-height: 0;
    max-width: 1180px;
    padding: 4px 6px 12px 4px;
    overflow: hidden;
}

.shell-textures-body-split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}

.shell-textures-left-col {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.shell-textures-body-split.is-pack-list-mode .shell-textures-package-panel {
    display: none !important;
}

.shell-textures-body-split.is-pack-list-mode .shell-textures-left-col {
    flex: 1 1 100%;
    max-width: 100%;
}

.shell-textures-grid.is-package-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: unset;
}

.shell-textures-grid.is-package-stack .shell-textures-empty {
    grid-column: unset;
}

.shell-tex-pack-toolbar {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.shell-tex-pack-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    color: rgba(255, 230, 200, 0.96);
    background: rgba(44, 32, 18, 0.85);
    border: 1px solid rgba(255, 180, 100, 0.38);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.shell-tex-pack-new-btn:hover {
    border-color: rgba(255, 200, 130, 0.55);
    background: rgba(56, 40, 22, 0.92);
}

.shell-tex-pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    align-content: start;
    padding: 4px 8px 16px 4px;
}

.shell-textures-pack-card {
    position: relative;
    box-sizing: border-box;
    text-align: left;
    border-radius: 12px;
    background: rgba(14, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 16px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease;
}

.shell-textures-pack-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(20, 25, 40, 0.5);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 6px 16px rgba(0, 0, 0, 0.15);
}

.shell-textures-pack-card--compact {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.shell-textures-pack-card .shell-textures-card-actions {
    top: 10px;
    right: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.shell-textures-pack-card:hover .shell-textures-card-actions,
.shell-textures-pack-card .shell-textures-card-actions:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.shell-textures-pack-card .shell-textures-card-actions button {
    width: 28px;
    height: 28px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
}

.shell-textures-pack-card .shell-textures-card-actions button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.shell-tex-pack-c-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    width: 100%;
}

.shell-tex-pack-c-head-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    width: 100%;
}

.shell-tex-pack-id-val {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    word-break: break-all;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.shell-tex-pack-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    color: rgba(180, 220, 180, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shell-tex-pack-price-wrap:focus-within {
    border-color: rgba(180, 230, 140, 0.45);
    box-shadow: 0 0 0 2px rgba(180, 230, 140, 0.15);
}

.shell-tex-pack-price-wrap i {
    font-size: 14px;
}

.shell-tex-pack-sell {
    width: 60px;
    text-align: left;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 0;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    -moz-appearance: textfield;
}

.shell-tex-pack-sell::-webkit-outer-spin-button,
.shell-tex-pack-sell::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shell-tex-pack-sell:focus {
    border-color: transparent;
}

.shell-tex-pack-save.shell-tex-pkg-primary {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.shell-tex-pack-save.shell-tex-pkg-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.shell-tex-pack-title-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.shell-tex-pack-title-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.shell-tex-pack-title {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: none;
    transition: all 0.2s ease;
}

.shell-tex-pack-title:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.shell-tex-pack-input {
    box-sizing: border-box;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: none;
    transition: all 0.2s ease;
}

.shell-tex-pack-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.shell-tex-pack-images {
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.shell-tex-pack-images--compact {
    margin-top: 8px;
    padding-top: 12px;
}

.shell-tex-pack-img-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.shell-tex-pack-img-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.shell-textures-pack-card--compact .shell-tex-pkg-slot {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shell-textures-pack-card--compact .shell-tex-pkg-add {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.shell-textures-pack-card--compact .shell-tex-pkg-add:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.shell-tex-pack-advanced {
    margin-top: 16px;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.shell-tex-pack-advanced:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.shell-textures-package-panel {
    display: none;
    flex: 0 0 300px;
    width: 300px;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: var(--admin-panel-box-radius, 10px);
    background: rgba(8, 12, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 12px 14px;
    overflow-y: auto;
    min-height: 120px;
    max-height: 100%;
}

.shell-textures-package-panel.is-active {
    display: block;
}

.shell-tex-pkg-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shell-tex-pkg-head {
    font-size: 13px;
    font-weight: 700;
    color: rgba(238, 241, 247, 0.96);
    letter-spacing: 0.02em;
}

.shell-tex-pkg-hint {
    margin: 0 0 4px;
    font-size: 10px;
    line-height: 1.4;
    color: rgba(200, 208, 222, 0.62);
    word-break: break-word;
}

.shell-tex-pkg-hint code {
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
}

.shell-tex-pkg-lbl {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(200, 208, 222, 0.55);
    margin-top: 4px;
}

.shell-tex-pkg-input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(238, 241, 247, 0.95);
    background: rgba(5, 8, 14, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
}

.shell-tex-pkg-input:focus {
    border-color: rgba(130, 200, 255, 0.35);
}

.shell-tex-pkg-input.is-readonly {
    opacity: 0.85;
    cursor: default;
}

.shell-tex-pkg-muted {
    font-size: 11px;
    color: rgba(200, 208, 222, 0.5);
}

.shell-tex-pkg-img-head {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(200, 208, 222, 0.55);
    margin-top: 8px;
}

.shell-tex-pkg-img-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    min-height: 56px;
}

.shell-tex-pkg-slot {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.shell-tex-pkg-slot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shell-tex-pkg-slot-del {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    color: rgba(255, 245, 245, 0.95);
    background: rgba(40, 10, 14, 0.88);
}

.shell-tex-pkg-row-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.shell-tex-pkg-add {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    color: rgba(200, 235, 255, 0.95);
    background: rgba(18, 40, 52, 0.75);
    border: 1px solid rgba(120, 200, 255, 0.28);
}

.shell-tex-pkg-add.is-disabled,
.shell-tex-pkg-add:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.shell-tex-pkg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.shell-tex-pkg-primary,
.shell-tex-pkg-secondary {
    flex: 1 1 auto;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.shell-tex-pkg-primary {
    color: rgba(220, 245, 255, 0.95);
    background: rgba(18, 44, 58, 0.85);
    border-color: rgba(120, 200, 255, 0.35);
}

.shell-tex-pkg-secondary {
    color: rgba(226, 230, 239, 0.88);
    background: rgba(18, 22, 32, 0.75);
}

@media (max-width: 900px) {
    .shell-textures-body-split {
        flex-direction: column;
    }

    .shell-textures-package-panel.is-active {
        width: 100%;
        flex: 0 0 auto;
        max-height: 42vh;
    }
}

.shell-textures-hero {
    flex: 0 0 auto;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shell-textures-title {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shell-textures-title i {
    opacity: 0.85;
    color: #9eb7ff;
}

.shell-textures-desc {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(226, 230, 239, 0.72);
    max-width: 62ch;
}

.shell-textures-desc code {
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shell-textures-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    min-height: 32px;
}

.shell-textures-toolbar-spacer {
    flex: 1 1 auto;
    min-width: 8px;
}

.shell-textures-bc-link {
    cursor: pointer;
    color: rgba(158, 183, 255, 0.92);
    text-decoration: none;
}

.shell-textures-bc-link:hover {
    text-decoration: underline;
}

.shell-textures-bc-part.is-current.shell-textures-bc-link {
    color: rgba(238, 241, 247, 0.98);
    font-weight: 700;
}

.shell-textures-mkdir-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300000;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.52);
    padding: 16px;
}

.shell-textures-mkdir-modal.is-open {
    display: flex;
}

.shell-textures-mkdir-modal-card {
    width: min(460px, 100%);
    padding: 22px 24px 18px;
    border-radius: 12px;
    background: rgba(12, 18, 30, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.shell-textures-mkdir-modal-title {
    font-size: 15px;
    font-weight: 700;
    color: rgba(238, 241, 247, 0.96);
    margin-bottom: 8px;
}

.shell-textures-mkdir-modal-hint {
    font-size: 12px;
    color: rgba(200, 208, 222, 0.65);
    margin: 0 0 16px;
    line-height: 1.4;
}

.shell-textures-mkdir-modal-input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 11px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(238, 241, 247, 0.95);
    background: rgba(8, 12, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    margin-bottom: 16px;
}

input[type="file"].shell-textures-mkdir-modal-input {
    padding: 6px 8px;
    line-height: 1.2;
}

input[type="file"].shell-textures-mkdir-modal-input::file-selector-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(238, 241, 247, 0.95);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.15s ease;
}

input[type="file"].shell-textures-mkdir-modal-input::file-selector-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.shell-textures-new-shell-wizard-card {
  width: min(820px, 96vw);
  max-height: min(88vh, 920px);
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.shell-textures-extra-parts-wrap {
  margin: 4px 0 18px;
  padding: 14px 16px 16px;
  border-radius: 10px;
  background: rgba(4, 8, 16, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-sizing: border-box;
}

.shell-textures-extra-row-header,
.shell-textures-extra-row {
  display: grid;
  grid-template-columns: minmax(126px, 1.15fr) minmax(120px, 1.1fr) minmax(92px, 0.95fr) minmax(92px, 0.95fr) minmax(92px, 0.95fr) 44px 44px;
  gap: 10px 12px;
  align-items: stretch;
}

.shell-textures-extra-row-header {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: end;
}

.shell-textures-extra-th {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.shell-textures-extra-th--action {
  text-align: center;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2px;
}

.shell-textures-extra-th-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(236, 240, 248, 0.95);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.shell-textures-extra-th--action .shell-textures-extra-th-title {
  font-size: 15px;
  font-weight: 800;
  color: rgba(180, 210, 255, 0.95);
}

.shell-textures-extra-th-desc {
  font-size: 10px;
  font-weight: 500;
  color: rgba(186, 198, 218, 0.62);
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.shell-textures-extra-th--action .shell-textures-extra-th-desc {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(186, 198, 218, 0.5);
}

.shell-textures-mkdir-modal-hint-small {
  font-size: 11px;
  color: rgba(226, 230, 239, 0.55);
  margin-top: -6px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.shell-textures-createfolder-nameblock {
  margin-top: 4px;
}

.shell-textures-createfolder-nameblock .shell-textures-mkdir-modal-hint-small {
  margin-top: 0;
}

.shell-textures-extra-row {
  margin-bottom: 12px;
}

.shell-textures-extra-row:last-child {
  margin-bottom: 0;
}

.shell-textures-extra-row .shell-textures-mkdir-modal-input {
  margin-bottom: 0;
  min-height: 40px;
  font-size: 12px;
}

.shell-textures-extra-row .shellTexturesNewShellWizardExtraAdd,
.shell-textures-extra-row .shellTexturesNewShellWizardExtraRemove {
  min-width: 40px;
  width: 100%;
  max-width: 44px;
  justify-self: center;
  min-height: 40px;
  height: auto;
  align-self: stretch;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.shell-textures-mkdir-modal-input::placeholder {
    color: rgba(200, 208, 222, 0.4);
}

.shell-textures-mkdir-modal-input:focus {
    border-color: rgba(130, 200, 255, 0.35);
}

.shell-textures-mkdir-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.shell-textures-mkdir-modal-btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.shell-textures-mkdir-modal-btn.is-cancel {
    color: rgba(226, 230, 239, 0.85);
    background: rgba(18, 22, 32, 0.75);
}

.shell-textures-mkdir-modal-btn.is-cancel:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.shell-textures-mkdir-modal-btn.is-ok {
    color: rgba(220, 245, 255, 0.95);
    background: rgba(18, 44, 58, 0.85);
    border-color: rgba(120, 200, 255, 0.35);
}

.shell-textures-mkdir-modal-btn.is-ok:hover {
    border-color: rgba(130, 210, 255, 0.5);
    background: rgba(22, 52, 68, 0.95);
}

.shell-textures-mkdir-modal-btn.is-danger {
    color: rgba(255, 230, 230, 0.98);
    background: rgba(72, 22, 28, 0.9);
    border-color: rgba(255, 120, 130, 0.45);
}

.shell-textures-mkdir-modal-btn.is-danger:hover {
    border-color: rgba(255, 150, 155, 0.55);
    background: rgba(88, 26, 34, 0.95);
}

.shell-textures-delete-modal-body {
    white-space: pre-wrap;
    word-break: break-word;
    color: rgba(220, 208, 208, 0.88);
}

.shell-textures-mkdir-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 220, 180, 0.95);
    background: rgba(40, 32, 18, 0.75);
    border: 1px solid rgba(255, 190, 120, 0.28);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.shell-textures-mkdir-btn:hover {
    border-color: rgba(255, 200, 130, 0.45);
    background: rgba(52, 40, 22, 0.9);
}

.shell-textures-upload-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(200, 235, 255, 0.95);
    background: rgba(18, 40, 52, 0.75);
    border: 1px solid rgba(120, 200, 255, 0.28);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.shell-textures-upload-btn:hover {
    border-color: rgba(130, 210, 255, 0.45);
    background: rgba(22, 50, 68, 0.9);
}

.shell-textures-file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.shell-textures-back {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(226, 230, 239, 0.9);
    background: rgba(12, 18, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.shell-textures-back:hover {
    border-color: rgba(130, 165, 255, 0.35);
    background: rgba(18, 26, 44, 0.85);
}

.shell-textures-back.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

.shell-textures-bc {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 11px;
    font-family: ui-monospace, 'Cascadia Code', monospace;
    color: rgba(200, 208, 222, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shell-textures-bc-part.is-root {
    color: rgba(158, 183, 255, 0.85);
    font-weight: 600;
}

.shell-textures-bc-part.is-current {
    color: rgba(238, 241, 247, 0.95);
    font-weight: 600;
}

.shell-textures-bc-sep {
    margin: 0 2px;
    opacity: 0.45;
}

.shell-textures-empty {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    border-radius: var(--admin-panel-box-radius, 10px);
    background: var(--admin-panel-box-surface-bg, rgba(5, 9, 16, 0.288));
    border: 1px dashed rgba(255, 255, 255, 0.12);
    color: rgba(226, 230, 239, 0.72);
    font-size: 12px;
    line-height: 1.45;
}

.shell-textures-empty i {
    font-size: 22px;
    color: rgba(158, 183, 255, 0.55);
}

.shell-textures-empty code {
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
}

.shell-textures-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    color: rgba(226, 230, 239, 0.55);
    font-size: 12px;
}

.shell-textures-loading i {
    opacity: 0.7;
}

.shell-textures-grid {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    align-content: start;
    padding: 6px 8px 12px 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.shell-textures-folder-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    padding: 12px 16px;
    min-height: 76px;
    border-radius: var(--shell-folder-card-radius, 12px);
    background: var(--shell-folder-card-bg);
    border: var(--shell-folder-card-border);
    box-shadow: var(--shell-folder-card-shadow);
    cursor: default;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease;
}

.shell-textures-folder-card:hover {
    border-color: var(--shell-folder-card-border-hover);
    background: var(--shell-folder-card-bg-hover);
    transform: translateY(-2px);
    box-shadow: var(--shell-folder-card-shadow-hover);
}

.shell-textures-folder-card.is-dir {
    cursor: pointer;
}

.shell-textures-folder-card.is-selected {
    border-color: rgba(255, 140, 90, 0.6);
    background: linear-gradient(145deg, rgba(50, 35, 30, 0.8), rgba(30, 20, 25, 0.6));
    box-shadow: 0 0 0 1px rgba(255, 140, 90, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shell-textures-folder-card.is-file {
    cursor: default;
}

.shell-textures-folder-card.is-file:hover {
    transform: translateY(-1px);
}

.shell-textures-folder-card.is-image {
    padding: 10px 14px;
    min-height: 76px;
}

.shell-textures-folder-card.is-image .shell-textures-folder-label {
    font-size: 13px;
    font-weight: 600;
    margin-top: 0;
}

.shell-textures-thumb-wrap {
    width: 52px;
    height: 52px;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.shell-textures-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.shell-textures-folder-icon {
    flex: 0 0 auto;
    color: rgba(158, 183, 255, 0.95);
    font-size: 26px;
    line-height: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(158, 183, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(158, 183, 255, 0.15);
}

.shell-textures-folder-card.is-dir .shell-textures-folder-icon {
    color: rgba(255, 210, 140, 0.95);
    background: rgba(255, 210, 140, 0.08);
    border-color: rgba(255, 210, 140, 0.15);
}

.shell-textures-folder-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(245, 247, 250, 0.96);
    line-height: 1.3;
    word-break: break-word;
    flex: 1 1 auto;
    padding-right: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shell-textures-folder-price {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(180, 220, 200, 0.9);
}

.shell-textures-price-toolbar-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(220, 245, 210, 0.95);
    background: rgba(28, 48, 32, 0.75);
    border: 1px solid rgba(140, 220, 150, 0.28);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.shell-textures-price-toolbar-btn:hover {
    border-color: rgba(150, 235, 160, 0.45);
    background: rgba(36, 58, 40, 0.9);
}

.shell-textures-price-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(200, 208, 222, 0.7);
    margin: 0 0 6px;
}

.shell-textures-price-path {
    font-size: 10px;
    font-weight: 600;
    word-break: break-all;
}

.shell-textures-card-actions {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.shell-textures-folder-card:hover .shell-textures-card-actions,
.shell-textures-card-actions:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.shell-textures-card-actions button {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 20, 30, 0.85);
    color: rgba(230, 235, 245, 0.95);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.shell-textures-card-actions button:hover {
    background: rgba(40, 55, 90, 0.95);
    border-color: rgba(150, 185, 255, 0.45);
    color: #fff;
    transform: translateY(-1px);
}

.shell-textures-card-actions .shell-textures-act-del:hover {
    background: rgba(90, 30, 30, 0.95);
    border-color: rgba(255, 120, 120, 0.55);
    color: #ffc4c4;
}

.shell-textures-card-actions .shell-textures-act-price:hover {
    background: rgba(40, 70, 40, 0.95);
    border-color: rgba(180, 230, 140, 0.55);
    color: #d4f5b8;
}

.shell-textures-card-actions .shell-textures-act-mapping:hover {
    background: rgba(34, 52, 84, 0.95);
    border-color: rgba(130, 180, 255, 0.55);
    color: #d9e9ff;
}

.shell-textures-card-actions .shell-textures-act-edit:hover {
    background: rgba(52, 44, 34, 0.95);
    border-color: rgba(220, 180, 120, 0.55);
    color: #f5e6c8;
}

.shell-textures-code-glyph {
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.shell-textures-mapping-modal-card {
    width: min(760px, 92vw);
}

.shell-textures-json-editor {
    min-height: 320px;
    max-height: 55vh;
    width: 100%;
    resize: vertical;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    line-height: 1.45;
    white-space: pre;
    tab-size: 2;
}

.shell-textures-hover-preview {
    position: fixed;
    z-index: 200000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.12s ease;
    padding: 8px;
    border-radius: 10px;
    background: rgba(8, 12, 20, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    max-width: min(260px, 42vw);
}

.shell-textures-hover-preview.is-visible {
    opacity: 1;
}

.shell-textures-hover-preview img {
    display: block;
    max-width: 220px;
    max-height: 165px;
    width: auto;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}

.admin-menu-right-wrapper .shell-textures-admin-wrapper {
    align-self: stretch;
}

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

.job-lists-admin-wrapper {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    color: #e2e6ef;
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    /* border-radius: var(--admin-panel-box-radius);
    border: var(--admin-panel-box-border); */
    /* background: var(--admin-panel-box-surface-bg); */
    /* box-shadow: var(--admin-panel-box-shadow); */
}

.job-lists-admin-wrapper::before {
    display: none;
}

.job-lists-admin-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 2px 4px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.job-lists-admin-body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
    gap: 16px;
    width: 100%;
}

.job-lists-admin-main {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 860px) {
    .job-lists-admin-inner {
        gap: 12px;
    }
    .job-lists-admin-body {
        flex-direction: column;
        gap: 12px;
    }
    .job-lists-admin-card:not(.job-lists-admin-card--table),
    .job-lists-admin-hint-card,
    #jobListsAdminFooter.job-lists-admin-footer {
        align-self: stretch;
        width: 100%;
    }
    #jobListsAdminFooter.job-lists-admin-footer--rail {
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-top: 12px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    #jobListsAdminSectionList.job-lists-admin-card--table {
        max-height: none;
        min-height: min(52vh, 560px);
    }
}

.job-lists-admin-hero,
.upgrades-admin-hero,
.world-config-admin-hero {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.job-lists-admin-hero-text,
.upgrades-admin-hero-text,
.world-config-admin-hero-text {
    flex: 1 1 240px;
    min-width: 0;
}

.job-lists-admin-hero-meta {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.job-lists-admin-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9effc8;
    background: rgba(62, 232, 154, 0.11);
    border: 1px solid rgba(62, 232, 154, 0.38);
    box-shadow: 0 0 20px rgba(62, 232, 154, 0.12);
}

.job-lists-admin-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ee89a;
    box-shadow: 0 0 10px rgba(62, 232, 154, 0.85);
    animation: jobListsLivePulse 2.2s ease-in-out infinite;
}

@keyframes jobListsLivePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(0.88);
    }
}

@keyframes jobListsSaveOk {
    0% {
        box-shadow: 0 0 0 0 rgba(62, 232, 154, 0.55);
    }
    40% {
        box-shadow: 0 0 0 10px rgba(62, 232, 154, 0.12);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(62, 232, 154, 0);
    }
}

.job-lists-admin-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #c8d8ff;
    background: linear-gradient(135deg, rgba(72, 120, 255, 0.22), rgba(72, 120, 255, 0.08));
    border: 1px solid rgba(130, 165, 255, 0.38);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.job-lists-admin-pill i {
    opacity: 0.85;
    font-size: 14px;
}

.job-lists-admin-title,
.upgrades-admin-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.job-lists-admin-title i,
.upgrades-admin-title i {
    margin-right: 10px;
    opacity: 0.88;
    color: #9fd4ff;
}

.job-lists-admin-desc,
.upgrades-admin-desc {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #8b93a8;
    max-width: 52em;
}

/* Yalnızca job list paneli — upgrades .upgrades-admin-card kullanır */
.job-lists-admin-inner .job-lists-admin-card {
    padding: var(--admin-panel-box-padding);
    border-radius: var(--admin-panel-box-radius);
    /* background: var(--admin-panel-box-surface-bg); */
    border: var(--admin-panel-box-border);
    box-shadow: var(--admin-panel-box-shadow);
}

.job-lists-admin-card:not(.job-lists-admin-card--table) {
    flex: 0 0 auto;
    width: 100%;
    align-self: stretch;
    max-width: 440px;
}

.job-lists-admin-card--table {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    max-height: none;
}

#jobListsAdminSectionList.job-lists-admin-card--table {
    flex: 1 1 0%;
    min-height: 220px;
}

.upgrades-admin-wrapper,
.dealership-admin-wrapper,
.world-config-admin-wrapper,
.order-items-admin-wrapper,
.vehicle-store-admin-wrapper,
.tebex-admin-wrapper {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    color: #e2e6ef;
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
}

.order-items-admin-wrapper,
.vehicle-store-admin-wrapper,
.tebex-admin-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    box-sizing: border-box;
}

.upgrades-admin-inner,
.dealership-admin-inner,
.world-config-admin-inner,
.tebex-admin-wrapper .upgrades-admin-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 2px 4px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.tebex-admin-wrapper .upgrades-admin-inner {
    overflow: hidden;
}

.upgrades-admin-card,
.world-config-admin-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: var(--admin-panel-box-padding);
    border-radius: var(--admin-panel-box-radius);
    /* background: var(--admin-panel-box-surface-bg); */
    border: var(--admin-panel-box-border);
    box-shadow: var(--admin-panel-box-shadow);
}

.upgrades-admin-footer,
.dealership-admin-footer,
.world-config-admin-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 8px;
    margin-top: 0;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    align-self: stretch;
}

.tebex-admin-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 4px 2px 2px;
    box-sizing: border-box;
    align-items: start;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.tebex-admin-hero {
    padding-bottom: 6px;
    margin-bottom: 0;
}

.tebex-admin-card {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    gap: 8px;
    padding: 10px;
    box-sizing: border-box;
}

.tebex-section-head {
    margin-bottom: 2px;
}

.tebex-product-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.tebex-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 28px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tebex-type-badge {
    min-width: 0;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(130, 165, 255, 0.16);
    background: rgba(130, 165, 255, 0.08);
    color: #b7c5e7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tebex-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.tebex-product-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 120, 120, 0.14);
    background: rgba(160, 40, 40, 0.14);
    color: #ffb4b4;
    cursor: pointer;
    transition: background 0.14s ease, border-color 0.14s ease;
}

.tebex-product-remove:hover {
    background: rgba(200, 55, 55, 0.22);
    border-color: rgba(255, 140, 140, 0.26);
}

.tebex-product-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 8px;
    align-items: end;
    min-width: 0;
}

.tebex-field--full {
    grid-column: 1 / -1;
}

.tebex-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tebex-field--id {
    min-width: 0;
}

.tebex-field--type {
    min-width: 0;
}

.tebex-field > span {
    color: #7a8294;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tebex-field .form-input {
    width: 100% !important;
    min-width: 0 !important;
    height: 32px !important;
    padding: 6px 8px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    box-sizing: border-box;
}

.tebex-field select.form-input {
    cursor: pointer;
}

@media (max-width: 1300px) {
    .tebex-admin-products {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 720px) {
    .tebex-admin-products,
    .tebex-product-meta {
        grid-template-columns: 1fr;
    }
}

.world-config-admin-wrapper .world-config-admin-footer {
    margin-top: 2px;
}

/* World/Economy admin — kompakt mozaik kutular (yeni bölümler için genişler) */
.world-config-admin-wrapper .world-config-admin-inner {
    gap: 12px;
}

.world-config-admin-wrapper .world-config-admin-hero,
.order-items-admin-wrapper .world-config-admin-hero,
.vehicle-store-admin-wrapper .world-config-admin-hero {
    padding-bottom: 8px;
    margin-bottom: 0;
}

.world-config-admin-wrapper .upgrades-admin-title,
.dealership-admin-wrapper .upgrades-admin-title,
.order-items-admin-wrapper .upgrades-admin-title,
.vehicle-store-admin-wrapper .upgrades-admin-title {
    font-size: clamp(13px, 1.05vw, 15px);
    margin: 0;
}

.world-config-admin-wrapper .upgrades-admin-desc,
.dealership-admin-wrapper .upgrades-admin-desc,
.order-items-admin-wrapper .upgrades-admin-desc,
.vehicle-store-admin-wrapper .upgrades-admin-desc {
    font-size: 12px;
    line-height: 1.45;
    margin: 4px 0 0;
    color: #9aa5bc;
}

.dsl-plate-rows {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 220px));
    gap: 10px;
    align-items: start;
    justify-content: start;
}

.dsl-plate-row {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 8px;
    align-items: stretch;
    width: fit-content;
    min-width: 55%;
    max-width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    min-height: 136px;
}

.dsl-plate-preview-box {
    position: relative;
    width: 100%;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 10, 16, 0.92);
}

.dsl-plate-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.96;
    filter: contrast(1.15) saturate(1.05);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.dsl-plate-preview-badge {
    position: absolute;
    left: 8px;
    bottom: 7px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #dce7ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.dsl-plate-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cdd7ee;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 0;
}

.dsl-plate-toggle span {
    white-space: nowrap;
}

.dsl-plate-toggle input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #6ea6ff;
}

.dsl-plate-fee-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
}

.dsl-plate-fee-field .world-config-mini-label {
    margin-bottom: 0;
    font-size: 8px;
    letter-spacing: 0.05em;
}

@media (max-width: 980px) {
    .dsl-plate-rows {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 640px) {
    .dsl-plate-rows {
        grid-template-columns: 1fr;
    }
}

.world-config-admin-hero + .world-config-mosaic {
    margin-top: 0;
}

.world-config-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    gap: 12px;
    width: 100%;
    align-items: start;
}

.world-config-tile {
    padding: 12px 14px;
    border-radius: var(--admin-panel-box-radius);
    border: var(--admin-panel-box-border);
    box-shadow: var(--admin-panel-box-shadow);
    background: var(--admin-panel-box-surface-bg);
    min-width: 0;
    box-sizing: border-box;
}

.world-config-tile--span-full {
    grid-column: 1 / -1;
}

.world-config-tile-title {
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9aa4b8;
}

.world-config-tile-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.world-config-tile-hint {
    margin: -2px 0 4px;
    padding: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #75809a;
}

.world-config-fields-tight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: end;
}

.world-config-mini-field {
    min-width: 0;
}

.world-config-mini-field--full {
    grid-column: 1 / -1;
}

.world-config-mini-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7a8294;
    margin: 0 0 4px;
}

.world-config-admin-inner .form-input--tight {
    width: 100%;
    box-sizing: border-box;
    padding: 7px 9px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    min-height: 0;
}

.world-config-tile.world-config-tile--span-full .form-input--tight {
    width: 86%;
}

.world-config-coord-wrap {
    margin-top: 4px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(130, 165, 255, 0.12);
    background: rgba(4, 8, 16, 0.38);
}

.world-config-coord-wrap--solo {
    margin-top: 0;
}

.world-config-coord-head {
    margin-bottom: 8px;
}

.world-config-coord-title {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #9fb6e8;
    line-height: 1.3;
}

.world-config-field-split {
    display: grid;
    grid-template-columns: 1fr minmax(0, 56%);
    gap: 10px 12px;
    align-items: end;
}

@media (max-width: 400px) {
    .world-config-field-split {
        grid-template-columns: 1fr;
    }
}

.world-config-coord-inputs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 10px;
    align-items: end;
}

.world-config-coord-inputs--w {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.world-config-coord-inputs .world-config-mini-label,
.world-config-coord-inputs--w .world-config-mini-label {
    margin-bottom: 3px;
}

.world-config-coord-actions {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.world-config-coord-actions .world-config-coord-pick.btn {
    width: 100%;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    background: rgba(100, 155, 255, 0.14) !important;
    border: 1px solid rgba(140, 180, 255, 0.35) !important;
    color: #dfe8ff !important;
}

.world-config-coord-pick.btn:hover {
    filter: brightness(1.08);
}

.world-config-num-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(154px, 1fr));
    gap: 10px 14px;
    align-items: end;
}

.order-items-npc-admin {
    padding: 9px 10px;
}

.order-items-npc-admin .world-config-tile-title {
    margin-bottom: 6px;
    padding-bottom: 4px;
}

.order-items-npc-admin .world-config-tile-body {
    gap: 6px;
}

.order-items-npc-compact-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px 8px;
    align-items: end;
}

.order-items-npc-coords {
    margin-top: 0;
    padding: 7px;
}

.order-items-npc-coords .world-config-coord-head {
    margin-bottom: 5px;
}

.order-items-npc-coord-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px 8px;
}

.order-items-npc-pick-field {
    display: flex;
    align-items: end;
}

.world-config-coord-actions .world-config-coord-pick.btn.order-items-npc-pick,
.order-items-npc-pick.btn {
    width: 100%;
    min-height: 31px;
    padding: 6px 8px !important;
    font-size: 9px !important;
    line-height: 1.15;
}

@media (max-width: 900px) {
    .order-items-npc-compact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .order-items-npc-coord-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.world-config-num-grid--we {
    grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
}

.world-config-we-shopclose {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(232, 240, 255, 0.82);
    cursor: pointer;
    user-select: none;
}

.world-config-we-shopclose input[type="checkbox"] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 520px) {
    .world-config-coord-inputs--w {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.world-config-field-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b93a8;
    margin: 0 0 6px;
}

.world-config-admin-inner .form-input {
    width: 100%;
    box-sizing: border-box;
}

.order-items-admin-shell {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    flex: 1 1 auto;
}

.order-items-admin-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 2px 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.order-items-admin-footer-stick {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 2px 6px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 8, 14, 0.96);
    box-shadow: 0 -14px 28px rgba(0, 0, 0, 0.42);
}

.order-items-admin-save.job-lists-btn-save {
    width: 100%;
    box-sizing: border-box;
}

.order-items-admin-hint.job-lists-admin-persist-hint {
    margin: 0;
    opacity: 0.88;
    font-size: 11px;
    line-height: 1.4;
}

.order-items-admin-groups,
#orderItemsAdminGroups {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.order-items-admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    flex: 0 0 auto;
}

.order-items-admin-toolbar .btn {
    padding: 6px 12px !important;
    font-size: 11px !important;
    border-radius: 8px !important;
}

.order-items-group-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    border-radius: var(--admin-panel-box-radius);
    border: var(--admin-panel-box-border);
    box-shadow: var(--admin-panel-box-shadow);
    background: var(--admin-panel-box-surface-bg);
    margin-bottom: 0;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.order-items-group-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
}

.order-items-group-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
    margin: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(4, 8, 16, 0.32);
    box-sizing: border-box;
    min-width: 0;
}

.order-items-group-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.order-items-group-section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9aa6bc;
    margin: 0;
    padding: 0;
}

.order-items-group-section-body {
    min-width: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-sizing: border-box;
}

.order-items-group-actions {
    display: flex;
    justify-content: flex-start;
    padding: 8px 10px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    background: transparent;
}

.order-items-group-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #c9d2e8;
    margin: 0;
    line-height: 1.25;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-items-job-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    margin-top: 0;
}

.order-items-job-chips-empty {
    margin: 4px 0 0;
    font-size: 10px;
    line-height: 1.35;
    color: #8b93a8;
}

.order-items-job-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid rgba(140, 180, 255, 0.28);
    background: rgba(8, 12, 22, 0.45);
    cursor: pointer;
    user-select: none;
    transition: filter 0.12s ease, border-color 0.12s ease;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #dfe8ff;
}

.order-items-job-chip:hover {
    filter: brightness(1.06);
}

.order-items-job-chip input {
    width: 12px;
    height: 12px;
    margin: 0;
    accent-color: rgba(130, 165, 255, 0.95);
    flex-shrink: 0;
}

.order-items-job-chip-key {
    line-height: 1.1;
    max-width: min(200px, 22vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-items-job-chip--orphan {
    border-color: rgba(255, 196, 120, 0.45);
    background: rgba(40, 24, 6, 0.35);
}

.order-items-job-chip-warn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    color: #ffb36b;
}

.order-items-item-rows {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin: 0;
}

.order-items-item-card {
    position: relative;
    box-sizing: border-box;
    flex: 0 0 15%;
    width: 15%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 30px 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(7, 10, 17, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.order-items-item-preview {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    margin: 2px auto 0;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.04);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.order-items-item-preview.is-empty {
    background-image: none !important;
}

.order-items-item-fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    align-self: stretch;
}

.order-items-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    min-width: 0;
}

.order-items-field-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(238, 244, 255, 0.55);
    line-height: 1.2;
    padding-left: 1px;
}

.order-items-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    align-items: end;
}

.order-items-field-row > .order-items-field .order-items-field-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-items-item-card .order-items-ii-img,
.order-items-item-card .order-items-ii-name,
.order-items-item-card .order-items-ii-code,
.order-items-item-card .order-items-ii-price {
    width: 100%;
    max-width: none;
    min-width: 0;
}

.order-items-admin-wrapper .order-items-item-card .form-input--tight,
.vehicle-store-admin-wrapper .order-items-item-card .form-input--tight {
    width: 100%;
    padding: 4px 6px !important;
    font-size: 11px !important;
    border-radius: 6px !important;
    line-height: 1.3;
}

.vehicle-store-admin-wrapper .order-items-item-card .form-input--tight {
    min-height: 0 !important;
    height: 24px !important;
    padding: 3px 5px !important;
    font-size: 10px !important;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card {
    border-color: rgba(111, 146, 255, 0.2);
    background:
        radial-gradient(circle at top left, rgba(88, 120, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(13, 18, 30, 0.92), rgba(7, 10, 17, 0.92));
    transition: border-color 0.14s ease, transform 0.14s ease, filter 0.14s ease;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card:hover {
    border-color: rgba(130, 165, 255, 0.36);
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-head {
    padding: 6px 8px;
    background: linear-gradient(90deg, rgba(82, 109, 255, 0.16), rgba(0, 0, 0, 0.18));
}

.vehicle-store-admin-wrapper .vehicle-store-card-head {
    grid-template-columns: minmax(0, 1fr) auto;
}

.vehicle-store-admin-wrapper .vehicle-store-title-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-title {
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #eef3ff;
}

.vehicle-store-admin-wrapper .vehicle-store-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
}

.vehicle-store-admin-wrapper .vehicle-store-meta-pill {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 2px 6px;
    border-radius: 999px;
    border: 1px solid rgba(130, 165, 255, 0.18);
    background: rgba(10, 16, 30, 0.62);
    color: rgba(220, 230, 255, 0.75);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-store-admin-wrapper .vehicle-store-meta-pill--price {
    border-color: rgba(95, 220, 180, 0.24);
    background: rgba(22, 90, 70, 0.22);
    color: #bfffe8;
}

.vehicle-store-admin-wrapper .vehicle-store-remove-vehicle-btn {
    min-width: 25px;
    padding: 3px 5px !important;
    border-radius: 7px !important;
    color: #ffb4b4 !important;
    font-size: 9px !important;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 6px;
    border: none;
    background: transparent;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-section {
    min-height: 0;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    background: rgba(0, 0, 0, 0.22);
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-section-label {
    font-size: 8px;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-section--catalog {
    min-width: 0;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-section--jobs {
    align-self: stretch;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-card {
    width: 100%;
    flex: 1 1 auto;
    padding: 0;
    border: none;
    background: transparent;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: stretch;
    gap: 6px;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-preview {
    width: 58px;
    height: 100%;
    min-height: 76px;
    margin: 0;
    border-radius: 8px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 22px rgba(255, 255, 255, 0.025),
        0 6px 14px rgba(0, 0, 0, 0.14);
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 4px;
    align-content: start;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-fields > .order-items-field:first-child {
    grid-column: 1 / -1;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-field-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .vehicle-store-stats-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    padding: 3px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-field-label {
    color: rgba(220, 230, 255, 0.66);
    font-size: 7px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-job-chips {
    gap: 4px;
    align-content: flex-start;
    max-height: 58px;
    overflow-y: auto;
    padding-right: 2px;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-job-chip {
    width: auto;
    justify-content: flex-start;
    border-radius: 999px;
    padding: 2px 6px;
    background: rgba(11, 17, 30, 0.72);
    font-size: 9px;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-job-chip input {
    width: 10px;
    height: 10px;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-job-chip input:checked + .order-items-job-chip-key {
    color: #bfffe8;
}

.vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-job-chip-key {
    max-width: 100%;
}

@media (max-width: 1280px) {
    .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-body,
    .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-card {
        grid-template-columns: 1fr;
    }

    .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-preview {
        width: 100%;
        height: 120px;
    }

    .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .vehicle-store-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.order-items-remove-item-btn,
.order-items-remove-group-btn {
    min-width: 28px;
    padding: 4px 6px !important;
    border-radius: 8px !important;
    font-size: 10px !important;
}

.order-items-remove-group-btn {
    align-self: center;
    flex-shrink: 0;
}

.order-items-remove-item-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    margin: 0;
    align-self: auto;
}

@media (max-width: 1100px) {
    .order-items-item-card {
        flex-basis: calc(33.333% - 10px);
        width: calc(33.333% - 10px);
    }
}

@media (max-width: 520px) {
    .order-items-item-card {
        flex-basis: 100%;
        width: 100%;
    }

    .order-items-field-row {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

.order-items-add-item-btn {
    margin-top: 0;
    padding: 5px 10px !important;
    font-size: 10px !important;
    border-radius: 8px !important;
}

.job-lists-section-head,
.upgrades-section-head {
    margin-bottom: 2px;
}

.job-lists-section-head--with-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 12px;
    margin-bottom: 6px;
}

.job-lists-section-head--with-action .job-lists-section-title {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
}

.job-lists-open-add-job-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff !important;
    background: linear-gradient(180deg, rgba(100, 155, 255, 0.95), rgba(60, 110, 220, 0.92)) !important;
    border: 1px solid rgba(140, 180, 255, 0.48) !important;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.12s ease;
    white-space: nowrap;
}

.job-lists-open-add-job-btn:hover {
    filter: brightness(1.08);
}

.job-lists-open-add-job-btn:active {
    transform: scale(0.97);
}

.job-lists-add-modal {
    position: absolute;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
}

.job-lists-add-modal.is-open {
    display: flex;
}

.job-lists-add-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 10, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: pointer;
}

.job-lists-add-modal-panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: min(86vh, 640px);
    overflow: auto;
    padding: var(--admin-panel-box-padding);
    border-radius: var(--admin-panel-box-radius);
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    box-shadow: var(--admin-panel-box-shadow), 0 18px 48px rgba(0, 0, 0, 0.45);
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.job-lists-add-modal-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.job-lists-add-modal-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c8cfde;
}

.job-lists-add-modal-close {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    padding: 0 !important;
    margin: -4px -4px 0 0;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(0, 0, 0, 0.2) !important;
    color: #e2e6ef !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.job-lists-add-modal-close:hover {
    background: rgba(255, 80, 60, 0.15) !important;
    border-color: rgba(255, 140, 120, 0.35) !important;
}

.job-lists-add-modal-sub {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.45;
    color: #8b93a8;
}

#jobListsAddModal .job-lists-admin-add--fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 14px;
}

#jobListsAddModal .job-lists-field {
    flex: 1 1 160px;
    min-width: 0;
}

#jobListsAddModal .job-lists-field--btn {
    flex: 0 0 auto;
    align-self: flex-end;
}

#jobListsAddModal .job-lists-field-label--ghost {
    display: block;
    visibility: hidden;
    margin-bottom: 6px;
    min-height: 1em;
}

#jobListsAddModal .job-lists-field--btn .job-lists-btn-add {
    width: auto;
    min-width: 118px;
}

@media (max-width: 560px) {
    #jobListsAddModal .job-lists-admin-add--fields {
        flex-direction: column;
        align-items: stretch;
    }

    #jobListsAddModal .job-lists-field--btn .job-lists-btn-add {
        width: 100%;
        min-width: 0;
    }

    #jobListsAddModal .job-lists-field-label--ghost {
        display: none;
    }

    #jobListsAddModal .job-lists-field--btn {
        align-self: stretch;
    }
}

.job-lists-section-title,
.upgrades-section-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #a8b0c4;
}

.job-lists-section-sub {
    margin: 8px 0 14px;
    font-size: 12px;
    line-height: 1.5;
    color: #8b93a8;
}

.job-lists-admin-add--fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

@media (max-width: 640px) {
    .job-lists-admin-add--fields {
        grid-template-columns: 1fr;
    }

    .job-lists-field--btn .job-lists-btn-add {
        width: 100%;
    }
}

.job-lists-field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #7a8296;
}

.job-lists-field-label--ghost {
    display: none;
}

.job-lists-field--btn .job-lists-btn-add {
    width: 100%;
}

.job-lists-kbd-hint {
    margin: 12px 0 0;
    font-size: 11px;
    color: #5c667a;
    line-height: 1.4;
}

.job-lists-kbd-hint kbd {
    display: inline-block;
    padding: 2px 8px;
    margin-right: 4px;
    border-radius: 6px;
    font-size: 11px;
    font-family: ui-monospace, monospace;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #b4bac8;
}

.job-list-new-label-input,
.job-list-new-key-input {
    width: 100%;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.job-list-new-label-input:hover,
.job-list-new-key-input:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.job-list-new-label-input:focus,
.job-list-new-key-input:focus {
    outline: none;
    border-color: rgba(130, 165, 255, 0.55) !important;
    box-shadow: 0 0 0 2px rgba(72, 120, 255, 0.2);
}

.form-input.job-list-new-key-input {
    width: 98%;
}

.job-lists-btn-add {
    padding: 10px 18px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    background: linear-gradient(180deg, rgba(100, 155, 255, 0.95), rgba(60, 110, 220, 0.92)) !important;
    border: 1px solid rgba(140, 180, 255, 0.45) !important;
    color: #fff !important;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.12s ease;
    white-space: nowrap;
}

.job-lists-btn-add:hover {
    filter: brightness(1.08);
}

.job-lists-btn-add:active {
    transform: scale(0.98);
}

.job-lists-admin-callout {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: var(--admin-panel-box-padding);
    margin-bottom: 10px;
    border-radius: var(--admin-panel-box-radius);
    font-size: 12px;
    line-height: 1.45;
    color: #a8b4cc;
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    box-shadow: var(--admin-panel-box-shadow);
    border-left: 3px solid var(--admin-panel-box-accent-info);
}

.job-lists-admin-callout i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #9fd4ff;
}

#jobListsAdminTable.job-lists-admin-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 0;
    margin-top: 4px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.upgrades-admin-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 0;
    margin-top: 4px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 165, 255, 0.35) rgba(255, 255, 255, 0.06);
}

#jobListsAdminTable .job-lists-admin-table-head,
#jobListsAdminTable .job-list-admin-row {
    display: grid;
    grid-template-columns: minmax(100px, 1.15fr) minmax(120px, 2fr) auto minmax(88px, auto);
    gap: 10px 12px;
    align-items: center;
}

#jobListsAdminTable .job-lists-admin-table-head {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 8px 10px;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b93a8;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: none;
}

#jobListsAdminTable .job-lists-admin-table-head .jh-status,
#jobListsAdminTable .job-lists-admin-table-head .jh-action {
    justify-self: end;
    text-align: right;
}

#jobListsAdminTable .job-list-admin-row {
    padding: 10px 12px;
    border-radius: var(--shell-folder-card-radius, 12px);
    background: var(--shell-folder-card-bg);
    border: var(--shell-folder-card-border);
    box-shadow: var(--shell-folder-card-shadow);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

#jobListsAdminTable .job-list-admin-row:hover {
    border-color: var(--shell-folder-card-border-hover);
    background: var(--shell-folder-card-bg-hover);
    box-shadow: var(--shell-folder-card-shadow-hover);
}

#jobListsAdminTable .job-list-admin-row .job-list-admin-label {
    width: 100%;
    min-width: 0;
    padding: 6px 10px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid transparent !important;
    color: #e8eaf0 !important;
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

#jobListsAdminTable .job-list-admin-row .job-list-admin-label:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

#jobListsAdminTable .job-list-admin-row .job-list-admin-label:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(130, 165, 255, 0.4) !important;
    box-shadow: 0 0 0 2px rgba(72, 120, 255, 0.15);
}

#jobListsAdminTable .job-list-admin-row .job-list-admin-key-input {
    width: 100%;
    min-width: 0;
    padding: 6px 10px !important;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid transparent !important;
    color: #e8eaf0 !important;
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

#jobListsAdminTable .job-list-admin-row .job-list-admin-key-input:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

#jobListsAdminTable .job-list-admin-row .job-list-admin-key-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(130, 165, 255, 0.4) !important;
    box-shadow: 0 0 0 2px rgba(72, 120, 255, 0.15);
}

#jobListsAdminTable .job-list-admin-label-readonly {
    min-width: 0;
    font-size: 13px;
    color: #c8cdd8;
    padding: 8px 2px;
    line-height: 1.35;
}

#jobListsAdminTable .job-list-admin-key {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    min-width: 0;
    word-break: break-word;
}

#jobListsAdminTable .job-list-admin-key-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#jobListsAdminTable .job-list-admin-lock {
    font-size: 11px;
    color: #e0b878;
    opacity: 0.9;
}

#jobListsAdminTable .job-list-admin-badge {
    justify-self: end;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid transparent;
    white-space: nowrap;
}

#jobListsAdminTable .job-list-admin-badge.is-config {
    color: #8b93a8;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

#jobListsAdminTable .job-list-admin-badge.is-editable {
    color: #9fd4ff;
    background: rgba(80, 160, 255, 0.08);
    border-color: rgba(120, 180, 255, 0.15);
}

#jobListsAdminTable .job-list-admin-badge.is-protected {
    color: #ffd28a;
    background: rgba(255, 180, 80, 0.08);
    border-color: rgba(255, 200, 120, 0.15);
}

#jobListsAdminTable .job-list-admin-remove {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #ff9a8a !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

#jobListsAdminTable .job-list-admin-remove:hover {
    background: rgba(255, 80, 60, 0.1) !important;
    border-color: rgba(255, 120, 100, 0.25) !important;
}

#jobListsAdminTable .job-list-admin-remove-text {
    display: inline;
}

@media (max-width: 560px) {
    #jobListsAdminTable .job-list-admin-remove-text {
        display: none;
    }

    #jobListsAdminTable .job-lists-admin-table-head {
        display: none;
    }

    #jobListsAdminTable .job-list-admin-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #jobListsAdminTable .job-list-admin-badge,
    #jobListsAdminTable .job-list-admin-remove,
    #jobListsAdminTable .job-list-admin-action-placeholder {
        justify-self: start;
    }
}

#jobListsAdminTable .job-list-admin-action-placeholder {
    display: inline-block;
    min-width: 40px;
    min-height: 1px;
}

.job-lists-admin-hint-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: var(--admin-panel-box-padding);
    border-radius: var(--admin-panel-box-radius);
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    box-shadow: var(--admin-panel-box-shadow);
    border-left: 3px solid var(--admin-panel-box-accent-info);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    align-self: stretch;
}

.job-lists-admin-hint-icon {
    flex: 0 0 auto;
    margin-top: 3px;
    font-size: 18px;
    color: #7eb8ff;
}

.job-lists-admin-hint-content {
    flex: 1 1 auto;
    min-width: 0;
}

.job-lists-admin-hint-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8ea0c0;
    margin-bottom: 6px;
}

.job-lists-admin-hint-body {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #b8c0d4;
}

#jobListsAdminFooter.job-lists-admin-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 0;
    margin-top: 0;
    position: static;
    background: none;
}

#jobListsAdminFooter.job-lists-admin-footer--rail {
    flex: 0 0 212px;
    width: 212px;
    max-width: none;
    align-self: stretch;
    justify-content: flex-start;
    padding-left: 16px;
    box-sizing: border-box;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

#jobListsAdminFooter.job-lists-admin-footer--rail .job-lists-btn-save {
    margin-top: auto;
}

#jobListsAdminFooter.job-lists-admin-footer--rail .job-lists-admin-persist-hint {
    text-align: center;
}

.job-lists-admin-persist-hint {
    flex: none;
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #6d7589;
    max-width: none;
    text-align: center;
}

.job-lists-btn-save {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(180deg, #3ee89a, #1fa855) !important;
    border: 1px solid rgba(130, 235, 180, 0.55) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 11px 22px !important;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 14px !important;
    transition: filter 0.15s ease, transform 0.12s ease, opacity 0.15s ease;
}

.job-lists-btn-save:hover:not(:disabled) {
    filter: brightness(1.08);
}

.job-lists-btn-save:active:not(:disabled) {
    transform: scale(0.98);
}

.job-lists-btn-save:disabled,
.job-lists-btn-save.is-saving {
    opacity: 0.72;
    cursor: not-allowed;
    pointer-events: none;
}

#jobListsAdminSave {
    width: 98%;
    align-self: center;
}
#jobListNewLabel {
    width: 98%;
}

.job-lists-btn-save.just-saved {
    animation: jobListsSaveOk 1.1s ease-out;
}

.admin-menu-left-wrapper,
.admin-menu-right-wrapper {
    box-sizing: border-box;
}

/* Properties / Jobs: alan ve detay kutuları = world-billboard kabuğu (tekrarsız token) */
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box),
.admin-menu-right-wrapper .area-right-panel-detail-box:not(.detail-world-billboard-box) {
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    border-radius: var(--admin-panel-box-radius);
    box-shadow: var(--admin-panel-box-shadow);
    padding: var(--admin-panel-box-padding);
    overflow: visible;
}

.admin-menu-right-wrapper .area-right-panel-detail-box.area-right-panel-detail-box-history {
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    border-radius: var(--admin-panel-box-radius);
    box-shadow: var(--admin-panel-box-shadow);
}

/* Routes: liste ve paneller */
.admin-menu-right-wrapper .route-item {
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    border-left: 3px solid #4caf50;
    border-radius: var(--admin-panel-box-radius);
    box-shadow: var(--admin-panel-box-shadow);
}

.admin-menu-right-wrapper .route-import-dialog {
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    border-radius: var(--admin-panel-box-radius);
    box-shadow: var(--admin-panel-box-shadow);
}

.admin-menu-right-wrapper .route-editor-panel {
    background: var(--admin-panel-box-surface-bg);
    border: var(--admin-panel-box-border);
    border-radius: var(--admin-panel-box-radius);
    box-shadow: var(--admin-panel-box-shadow);
}

.area-creator-wrapper {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin-top: 0;
    display: none;
    box-sizing: border-box;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.admin-menu-right-wrapper .area-creator-wrapper {
    flex-direction: row;
    min-height: 0;
    position: relative;
}

.route-creator-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 0;
    display: none;
}

/* normalize legacy inner layouts for new admin panel shell */
.admin-menu-right-wrapper .area-left-panel-wrapper {
    margin: 0;
    padding: 16px;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    flex: 0 0 clamp(260px, 34%, 400px);
    width: auto;
    max-width: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.admin-menu-right-wrapper .area-creator-wrapper:not(.is-right-open) > .area-left-panel-wrapper {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
}

/* Sağ panel absolute + inset:0 tüm creator'ı kaplıyordu; sol alan listesi tıklanmıyordu */
.admin-menu-right-wrapper .area-creator-wrapper > .area-right-panel-wrapper {
    position: relative;
    inset: auto;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: 100%;
    max-height: 100%;
    z-index: auto;
}

.admin-menu-right-wrapper .route-creator-container {
    margin: 0;
    height: 100%;
}

@media (max-width: 1280px) {
    .admin-menu-wrapper {
        width: 94vw;
        height: 90vh;
        margin: 4vh auto;
        display: block;
    }

    .admin-menu-header {
        width: 220px;
    }

    .admin-menu-left-wrapper {
        width: 220px;
        left: 0;
    }

    .admin-menu-right-wrapper {
        width: calc(100% - 220px);
        left: 220px;
    }
}

.area-left-panel-wrapper {
    /* width: 28%;
    height: 68%;
    background: rgb(10 10 10 / 96%);
    background-image: url(/html/img//left-panel-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 9% 4%;
    border-radius: 12px;
    color: white;
    padding: 29px;
    float: left; */
    width: 100%;
    height: 100%;
    /* background: rgb(10 10 10 / 96%);
    background-image: url(/html/img//panel-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    margin: 9% auto;
    border-radius: 12px;
    color: white;
    padding: 29px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    box-sizing: border-box;
}

.area-left-panel-toolbar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.area-left-panel-search-input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
    height: 40px;
    outline: none;
    border: none;
    border-radius: 12px;
    background-color: rgb(24 24 24 / 38%);
    border: 1px solid rgb(213 213 213 / 4%);
    color: white;
    padding: 0 14px;
    margin: 0;
    position: relative;
    display: block;
    box-sizing: border-box;
}

.area-left-panel-header {
    width: auto;
    max-width: 12%;
    height: 4%;
    border-bottom: 1px solid white;
    color: white;
    font-size: 1.5vh;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.area-left-panel-createbutton {
    position: static;
    flex: 0 0 auto;
    height: 40px;
    background: rgb(22 22 22 / 39%);
    border-radius: 10px;
    filter: drop-shadow(2px 4px 10px black);
    font-size: 12px;
    text-align: center;
    padding: 0 14px;
    font-weight: 600;
    transition: .1s all;
    max-width: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    cursor: pointer;
}

.area-left-panel-createbutton:hover {
    scale: 1.04;
    cursor: pointer;
}

@media (max-width: 1280px) {
    .area-left-panel-createbutton {
        font-size: 11px;
        padding: 0 12px;
    }
}

.area-left-panel-areas {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    gap: 12px;
    align-content: start;
    padding: 2px 2px 8px 0;
    box-sizing: border-box;
}

.area-left-panel-areas::-webkit-scrollbar {
    display: none;
    margin: 0;
}

.area-left-panel-area-box {
    border-radius: 10px;
    font-size: 12px;
    float: none;
    margin: 0;
    padding: 10px;
    background: rgba(8, 8, 8, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: auto;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.area-left-panel-area-boximg {
    background-image: url(https://cdn.discordapp.com/attachments/1106256169296724059/1224002335819174029/Screenshot_236.png?ex=661be801&is=66097301&hm=ff45d8bcc703c2da524264a865e890d1eec959710e814062029a3b984c2b7439&);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 132px;
    min-height: 132px;
    flex: 0 0 132px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.area-left-panel-area-boximg-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 38%, rgba(0, 0, 0, 0.88) 100%);
    border-radius: 0 0 8px 8px;
}

.area-left-panel-area-boxheader {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}

.area-left-panel-area-boxheader-label,
.area-left-panel-area-boxheader p:first-child {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.78;
    line-height: 1.2;
}

.area-left-panel-area-boxheader-value,
.area-left-panel-area-boxheader p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.area-left-panel-area-boxlabel {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    font-size: 10px;
    line-height: 1.3;
    opacity: 0.72;
    margin: 0;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}

.area-left-panel-area-boxlabel-key::after {
    content: ':';
}

.area-left-panel-area-boxlabel-value {
    font-weight: 700;
    letter-spacing: 0.03em;
    opacity: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.area-left-panel-area-box-usability {
    width: 100%;
    margin-top: 0;
    padding: 0;
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.area-left-panel-area-box-usability-header {
    font-weight: 600;
    color: #8b96ad;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.area-left-panel-area-box-usability-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    max-height: 76px;
    min-height: 36px;
    flex: 1 1 auto;
    align-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    scrollbar-width: none;
    padding: 8px;
    border: 1px solid rgba(124, 109, 246, 0.35);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    box-sizing: border-box;
}

.area-left-panel-area-box-usability-types::-webkit-scrollbar {
    display: none;
}

.area-left-panel-area-box-usability-box {
    background: rgba(124, 109, 246, 0.15);
    border: 1px solid rgba(124, 109, 246, 0.4);
    color: #d1ccff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.area-left-panel-area-box-usability-box i {
    font-size: 10px;
    opacity: 0.8;
}


.area-left-panel-rent-price-box {
    background: #136e1373;
    margin: 0;
    min-height: 40px;
    width: auto;
    border-radius: 5px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    flex: 1 1 auto;
}

.area-left-panel-rent-price-icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
    background: green;
    text-align: center;
    border-radius: 4px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}


.area-left-panel-rent-price-header {
    font-size: 10px;
    width: 100%;
    opacity: 0.72;
    font-weight: 600;
    margin: 0;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


.area-left-panel-rent-price-amount {
    font-size: 12px;
    width: 100%;
    font-weight: 700;
    margin: 0;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.area-left-panel-rent-price-content {
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.area-left-panel-area-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
}



.area-left-panel-area-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    /* background: #060606; */
    font-weight: 400;
    text-align: center;
    /* padding: 10px; */
    margin-left: 0;
    margin-top: 0;
    transition: .1s all;
    background: rgb(0 0 0 / 36%);
    border-radius: 7px;
    font-size: 1.4vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.area-left-panel-area-teleport-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    font-weight: 400;
    text-align: center;
    margin-left: 0;
    margin-top: 0;
    transition: .1s all;
    background: rgb(0 0 0 / 36%);
    border-radius: 7px;
    font-size: 1.4vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.area-left-panel-area-button:hover {
    scale: 1.2;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.753));
}

.area-left-panel-area-teleport-button:hover {
    scale: 1.2;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.753));
}

.area-left-panel-area-status-stack {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    max-width: calc(100% - 16px);
    pointer-events: none;
}

.area-left-panel-area-status {
    width: fit-content;
    max-width: 100%;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 5px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: static;
    z-index: auto;
}

.area-left-panel-area-status-unpaid {
    background: rgba(142, 25, 25, 0.35);
    border: 1px solid rgba(199, 73, 73, 0.55);
    color: #ffd5d5;
}




.area-right-panel-wrapper {
    overflow: hidden;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 100%;
    max-height: 100%;
    border-radius: 12px;
    color: white;
    backdrop-filter: blur(4px);
    margin: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    position: absolute;
    inset: 0;
    z-index: 25;
    background: rgba(8, 10, 16, 0.78);
}

.area-right-panel-wrapper::-webkit-scrollbar {
    display: none;
    margin: 0;
}










/* ██╗          ██╗     ██████╗██████╗ ███████╗ █████╗ ████████╗███████╗    ███████╗███████╗ ██████╗████████╗██╗ ██████╗ ███╗   ██╗             ██╗ */
/* ██╔╝▄ ██╗▄    ██║    ██╔════╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝██╔════╝    ██╔════╝██╔════╝██╔════╝╚══██╔══╝██║██╔═══██╗████╗  ██║    ▄ ██╗▄  ██╔╝ */
/* ██╔╝  ████╗    ██║    ██║     ██████╔╝█████╗  ███████║   ██║   █████╗      ███████╗█████╗  ██║        ██║   ██║██║   ██║██╔██╗ ██║     ████╗ ██╔╝  */
/* ██╔╝  ▀╚██╔▀    ╚═╝    ██║     ██╔══██╗██╔══╝  ██╔══██║   ██║   ██╔══╝      ╚════██║██╔══╝  ██║        ██║   ██║██║   ██║██║╚██╗██║    ▀╚██╔▀██╔╝   */
/* ██╔╝     ╚═╝     ██╗    ╚██████╗██║  ██║███████╗██║  ██║   ██║   ███████╗    ███████║███████╗╚██████╗   ██║   ██║╚██████╔╝██║ ╚████║      ╚═╝██╔╝    */
/* ╚═╝              ╚═╝     ╚═════╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝   ╚═╝   ╚══════╝    ╚══════╝╚══════╝ ╚═════╝   ╚═╝   ╚═╝ ╚═════╝ ╚═╝  ╚═══╝         ╚═╝     */


.area-creator-panel-header {
    font-size: clamp(14px, 1.8vh, 18px);
    font-weight: 500;
    text-align: center;
    margin: 0 0 8px;
    flex-shrink: 0;
}

.area-right-panel-create-section {
    width: 100%;
    min-width: 0;
    flex: 1 1 0;
    min-height: 0;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    padding: 0 4px 8px;
}

.area-right-panel-create-section-areaimg {
    background-image: url(/html/img//image_not_available.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
    width: min(280px, 92%);
    max-width: 100%;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: min(200px, 28vh);
    flex-shrink: 0;
}

.area-right-panel-create-section-areaimg-input {
    text-align: center;
    border: none;
    outline: none;
    color: white;
    border: 1px solid #181717db;
    background: #12121291;
    width: min(420px, 100%);
    max-width: 100%;
    margin: 0 auto;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    box-sizing: border-box;
    display: block;
}

.area-right-panel-create-section-areaimg-input::placeholder {
    color: white;
}

.area-right-panel-create-section-input-wrapper {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 10px;
    align-content: start;
    padding: 4px 2px 8px;
    box-sizing: border-box;
}

.area-right-panel-section-input-box {
    width: auto;
    min-width: 0;
    height: fit-content;
    float: none;
    margin: 0;
    padding: 12px;
    text-align: left;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.area-right-panel-section-input-header {
    width: 100%;
    text-align: left;
    min-height: 0;
    font-size: clamp(11px, 1.2vh, 14px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.area-right-panel-section-input-box .usability-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.area-right-panel-section-input-box > .input-boxes {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    flex: 0 0 auto;
}

.admin-menu-right-wrapper .area-left-panel-areas {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: 100%;
}

.area-right-panel-section-input-label {
    width: auto;
    height: auto;
    opacity: 0.5;
    font-size: 11px;
    text-align: right;
    float: none;
    margin: 0 0 0 auto;
    flex-shrink: 0;
}

.tooltip-content {
    display: none;
    /* JavaScript tarafından değiştirilecek */
    position: absolute;
    /* Ebeveynine (relative olan) göre konumlandır */
    background: rgb(17, 17, 17);
    /* backdrop-filter: ; */
    /* Koyu arka plan */
    color: white;
    /* Beyaz yazı rengi */
    padding: 8px 12px;
    /* İç boşluk */
    border-radius: 4px;
    /* Yuvarlak köşeler */
    z-index: 9999;
    /* En üstte görünmesini sağla */
    width: 200px;
    /* Genişlik */
    left: 25px;
    /* İkona göre yatay konum */
    top: -5px;
    /* İkona göre dikey konum */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Gölge */
    font-size: 13px;
    /* Yazı boyutu */
    line-height: 1.4;
    /* Satır yüksekliği */
    white-space: normal;
    /* Yazının kaymasını sağla */
    word-wrap: break-word;
    /* Uzun kelimeleri kır */
}

/* İsteğe bağlı: Tooltip oku ekleme */
.tooltip-content::before {
    content: "";
    position: absolute;
    top: 10px;
    /* Konumlandırma ayarı */
    left: -10px;
    /* Konumlandırma ayarı */
    border-width: 5px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.9) transparent transparent;
    /* Sol ok oluşturur */
}

.input-box-place {
    background: transparent;
    color: white;
    outline: none;
    border: none;
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    border: 1px solid #181717db;
    background: #12121291;
    padding: 8px;
    border-radius: 6px;
    box-sizing: border-box;
}



.input-boxes {
    width: auto;
    flex: 1 1 auto;
    min-width: min(100%, 140px);
    height: auto;
    float: none;
    text-align: center;
    font-size: clamp(10px, 0.85vh, 13px);
    margin: 0;
    background: rgba(0, 0, 0, 0.46);
    padding: 8px 10px;
    border-radius: 6px;
    transition: .1s all;
    box-sizing: border-box;
}

.input-boxes:hover {
    scale: 1.2;
    background: rgba(0, 0, 0, 0.46);
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.753));
    cursor: pointer;
}

.input-box {
    float: none;
    margin: 0;
    background: #00000075;
    padding: 8px 10px;
    min-width: min(100%, 100px);
    text-align: center;
    border-radius: 6px;
    font-size: clamp(10px, 0.8vh, 13px);
    transition: .1s all;
    box-sizing: border-box;
}

.input-box-selected {
    background: rgb(123, 255, 0);
    filter: drop-shadow(0 0 0.75rem rgb(123, 255, 0));
}

.input-box:hover {
    scale: 1.2;
    background: rgb(123, 255, 0);
    filter: drop-shadow(0 0 0.75rem rgb(123, 255, 0));
    cursor: pointer;
}


.area-right-panel-create-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: stretch;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 4px;
    box-sizing: border-box;
}

.area-right-panel-create-footer .create-section-box {
    flex: 1 1 calc(50% - 6px);
    min-width: min(100%, 140px);
    min-height: 44px;
    margin: 0;
}

.create-section-box {
    width: auto;
    height: auto;
    float: none;
    margin-top: 0;
    background: #00000094;
    text-align: center;
    margin-left: 0;
    padding: 12px 14px;
    border-radius: 8px;
    transition: .1s all;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.create-section-confirm {
    background: rgba(21, 255, 0, 0.74);
}

.create-section-confirm:hover {
    scale: 1.2;
    background: rgb(123, 255, 0);
    filter: drop-shadow(0 0 0.75rem rgb(123, 255, 0));
    cursor: pointer;
}


.create-section-decline {
    /* background: rgba(255, 0, 0, 0.623); */
}

.create-section-decline:hover {
    scale: 1.2;
    background: rgb(255, 0, 0);
    filter: drop-shadow(0 0 0.75rem rgb(255, 0, 0));
    cursor: pointer;
}


.left-corner-polyzone-settings {
    width: 35%;
    background: #1818187a;
    height: 6%;
    position: absolute;
    bottom: 0%;
    right: 0%;
    color: white;
    display: none;
    border: 5px;
}

.polyzone-settings-box {
    display: flex;
    width: fit-content;
    margin-left: 4%;
    padding: 12px;
    text-align: center;
}

.polyzone-settings-box-letter {
    background: #ffffff94;
    color: black;
    width: fit-content;
    height: 79%;
    padding: 6px px 14px;
    border-radius: 3px;
    /* margin-right: -12%; */
    margin-top: 5%;
    font-weight: 600;
    padding: 6px 12px;
}


.polyzone-settings-box-label {
    width: 100%;
    padding: 3px;
    height: 100%;
    margin-top: 1%;
    text-align: left;
    /* font-size: 1.3vh; */
    font-size: 1.4vh;
    margin-left: 7%;
}


/* ██╗           █████╗ ██████╗ ███████╗ █████╗     ██████╗ ███████╗████████╗ █████╗ ██╗██╗     ███████╗             ██╗
   ██╔╝▄ ██╗▄    ██╔══██╗██╔══██╗██╔════╝██╔══██╗    ██╔══██╗██╔════╝╚══██╔══╝██╔══██╗██║██║     ██╔════╝    ▄ ██╗▄  ██╔╝
  ██╔╝  ████╗    ███████║██████╔╝█████╗  ███████║    ██║  ██║█████╗     ██║   ███████║██║██║     ███████╗     ████╗ ██╔╝ 
 ██╔╝  ▀╚██╔▀    ██╔══██║██╔══██╗██╔══╝  ██╔══██║    ██║  ██║██╔══╝     ██║   ██╔══██║██║██║     ╚════██║    ▀╚██╔▀██╔╝  
██╔╝     ╚═╝     ██║  ██║██║  ██║███████╗██║  ██║    ██████╔╝███████╗   ██║   ██║  ██║██║███████╗███████║      ╚═╝██╔╝   
╚═╝              ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚══════╝   ╚═╝   ╚═╝ ╚═════╝ ╚═╝  ╚═══╝         ╚═╝    
                                                                                                                          */

.area-right-panel-details {
    width: 100%;
    min-width: 0;
    flex: 1 1 0;
    min-height: 0;
    height: auto;
    display: none;
    position: relative;
    top: 0;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    padding-bottom: 0;
}

.area-right-panel-details-scroll {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-sizing: border-box;
}

.area-right-panel-details-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(96px, auto);
    gap: 12px;
    padding: 8px 12px 12px;
    align-items: start;
    box-sizing: border-box;
}

.area-right-panel-details .area-right-panel-details-grid > .details-group {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 10px;
    align-content: start;
    align-items: stretch;
    box-sizing: border-box;
}

.area-right-panel-details .details-group .area-right-panel-detail-box {
    grid-column: auto;
    width: auto;
}

.area-right-panel-details .details-group .detail-owner-box {
    grid-column: auto;
    min-height: 136px;
}

.area-right-panel-details .details-group .detail-shell-box,
.area-right-panel-details .details-group .detail-polyzone-box,
.area-right-panel-details .details-group .detail-mlo-shell-box,
.area-right-panel-details .details-group .detail-world-billboard-box {
    grid-column: auto;
}

.area-right-panel-details .details-group-structure {
    margin-bottom: 4px;
    grid-column: 1 / -1;
    align-self: start;
}

.area-right-panel-details .details-group-structure > .area-right-panel-detail-box {
    overflow: hidden;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box {
    grid-column: auto;
    width: 100%;
    max-width: min(100%, 260px);
    min-width: 0;
    justify-self: start;
    align-self: start;
    padding: 8px 10px;
    gap: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .detail-world-billboard-header-row,
.area-right-panel-details .details-group-structure .detail-world-billboard-box .create-world-billboard-header-row {
    margin-bottom: 4px;
    gap: 6px;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .world-billboard-enable-row {
    margin: 0 0 4px;
    font-size: 11px;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .world-billboard-fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 0;
}

.world-billboard-fields .world-billboard-metrics-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.world-billboard-fields .world-billboard-metrics-row .world-billboard-label {
    min-width: 0;
}

.world-billboard-label .world-billboard-label-text {
    display: block;
    line-height: 1.25;
    opacity: 0.92;
}

@media (max-width: 420px) {
    .world-billboard-fields .world-billboard-metrics-row {
        grid-template-columns: 1fr;
    }
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .world-billboard-label {
    font-size: 10px;
    gap: 3px;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .world-billboard-label .form-input {
    min-height: 28px;
    padding: 4px 8px;
    font-size: 10px;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .world-billboard-check {
    font-size: 11px;
    margin: 0;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .world-billboard-actions-row .world-billboard-edit {
    min-height: 28px;
    padding: 5px 10px;
    font-size: 10px;
}

.area-right-panel-details .details-group-structure .detail-world-billboard-box .area-right-panel-detail-box-header {
    font-size: clamp(10px, 1vh, 12px);
    line-height: 1.2;
}

.area-right-panel-details-return {
    font-size: clamp(11px, 1vh, 13px);
    width: fit-content;
    max-width: 100%;
    margin: 4px 0 2px 12px;
    height: auto;
    padding: 6px 8px;
    border-radius: 8px;
    transition: .1s all;
}

.area-right-panel-details-return:hover {
    filter: drop-shadow(0 0 0.75rem white);
    scale: 1.04;
    cursor: pointer;
}


.area-right-panel-detail-box {
    grid-column: span 4;
    width: 100%;
    min-width: 0;
    background: rgb(8 8 8 / 81%);
    height: auto;
    min-height: 104px;
    margin: 0;
    float: none;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-right-panel-detail-box.detail-owner-box {
    grid-column: span 6;
    min-height: 136px;
}

.area-right-panel-detail-box.detail-shell-box,
.area-right-panel-detail-box.detail-polyzone-box,
.area-right-panel-detail-box.detail-mlo-shell-box {
    grid-column: span 6;
}

.area-right-panel-detail-box::after {
    content: "";
    display: table;
    clear: both;
}

.area-right-panel-detail-box.area-right-panel-detail-box-history {
    width: 100%;
    min-height: 200px;
    height: auto;
    grid-column: 1 / -1;
    background: #181818;
    align-self: stretch;
    position: relative;
    z-index: 1;
}

.area-right-panel-details .details-group-structure + .area-right-panel-detail-box-history {
    margin-top: 43px;
}

.detail-polyzone-box .detail-polyzone-input {
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
}

.detail-polyzone-box .detail-polyzone-change {
    margin-top: 8px;
}

.detail-world-billboard-box {
    grid-column: 1 / -1;
    height: auto;
    min-height: fit-content;
    padding: 10px 12px 10px;
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
}

.detail-world-billboard-box .area-right-panel-detail-box-header {
    margin-bottom: 6px;
}

.detail-world-billboard-box .detail-world-billboard-help-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 6px 0;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    margin-left: 0;
    opacity: 0.65;
    font-size: clamp(10px, 0.95vh, 12px);
}

.detail-world-billboard-box .detail-world-billboard-help-row .tooltip-trigger {
    flex-shrink: 0;
    font-size: 13px !important;
    line-height: 1;
}

.detail-world-billboard-box .world-billboard-fields {
    gap: 6px;
    margin-top: 2px;
    flex: 0 0 auto;
    align-items: stretch;
}

.detail-world-billboard-box .world-billboard-label {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

.detail-world-billboard-box .world-billboard-check {
    margin-top: 2px;
    margin-bottom: 0;
}


.area-right-panel-detail-buttons {
    width: 100%;
    height: auto;
    margin: 4px 0 0;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 12px 14px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.area-right-panel-detail-button {
    border: 1px solid #181717db;
    background: #12121291;
    flex: 0 0 auto;
    min-width: 148px;
    min-height: 40px;
    height: auto;
    margin-top: 0;
    text-align: center;
    padding: 10px 12px;
    font-size: clamp(11px, 0.95vh, 14px);
    font-weight: 600;
    border-radius: 8px;
    transition: .1s all;
}

.area-right-panel-detail-box .detail-renttype-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    min-height: 36px;
}

.detailConfirm:hover {
    scale: 1.03;
    background-color: var(--hover-bg);
    color: black;
    cursor: pointer;
}

.detailDeleteProperty:hover {
    scale: 1.03;
    background-color: rgb(245, 99, 99);
    color: black;
    cursor: pointer;
}

.detailConfirm {
    background: #020a0391;
}

.area-right-panel-detail-box-header {
    text-align: left;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 20px;
    font-size: clamp(12px, 1.1vh, 15px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.area-right-panel-detail-box-header i {
    position: relative;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1;
    width: 1em;
    text-align: center;
    opacity: 0.72;
    z-index: 2;
    margin: 0;
}

.area-right-panel-detail-box-label {
    /* height: 13%;
    text-overflow: ellipsis;
    font-weight: 500;
    overflow: hidden;
    overflow: hidden;
    opacity: 0.5;
    font-size: .8vh;
    text-align: center; */
    width: 100%;
    font-weight: 500;
    overflow: visible;
    opacity: 0.75;
    font-size: clamp(10px, 0.9vh, 12px);
    text-align: left;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .area-right-panel-detail-box {
        grid-column: span 6;
    }
    .area-right-panel-detail-box.detail-owner-box,
    .area-right-panel-detail-box.detail-shell-box,
    .area-right-panel-detail-box.detail-polyzone-box,
    .area-right-panel-detail-box.detail-mlo-shell-box,
    .detail-world-billboard-box,
    .area-right-panel-detail-box.area-right-panel-detail-box-history {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .area-right-panel-detail-box {
        grid-column: 1 / -1;
    }
}

/* OWNER */
.area-right-panel-owner-image {
    /* width: 50%;
    height: 50%;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto; */
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    float: none;
}

.area-right-panel-owner-name {
    /* font-size: 1.6vh;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 17%;
    margin-top: 4%;
    font-weight: 300; */
    font-size: clamp(12px, 1.05vh, 14px);
    margin: 0;
    text-align: left;
    width: 100%;
    height: auto;
    float: none;
    font-weight: 600;
    margin-left: 0;
}

.area-right-panel-owner-job {
    text-align: left;
    opacity: 0.8;
    font-weight: 500;
    font-size: clamp(10px, 0.9vh, 12px);
}

.area-right-panel-owner-clear {
    /* background: rgb(238, 25, 25);
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    padding: 9px 7px;
    text-align: center;
    border-radius: 13px;
    margin-top: 7%;
    font-weight: 600;
    transition: .4s all; */
    background: rgb(238, 25, 25);
    width: fit-content;
    height: fit-content;
    margin: 4px 0 0 0;
    padding: 8px 10px;
    text-align: center;
    border-radius: 8px;
    margin-top: auto;
    font-weight: 600;
    transition: .4s all;
    font-size: clamp(10px, 0.9vh, 12px);
}

.area-right-panel-detail-usabilitys {
    width: 100%;
    max-height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.area-right-panel-detail-usability-type {
    background: #7C6DF6;
    border: 1px solid #6858ed;
    width: fit-content;
    height: fit-content;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 8px;
    margin: 0;
    float: none;
    text-align: center;
    font-size: clamp(10px, 0.85vh, 12px);
    transform: .1s all;
}

.area-right-panel-detail-usability-type:hover {
    filter: drop-shadow(0 0 0.75rem #7C6DF6);
    scale: 1.1;
    opacity: 1;
    cursor: pointer;
}

.usability-type-selected {
    opacity: 1;
}

.usability-type-unselected {
    opacity: 0.3;
}


.area-right-panel-owner-clear:hover {
    filter: drop-shadow(0 0 0.75rem rgb(238, 25, 25));
    cursor: pointer;
}


.detail-box-input {
    /* border: none;
    outline: none;
    background: transparent;
    color: white;
    border-bottom: 1px solid white;
    text-align: center;
    opacity: 0.7;
    margin-top: 20%; */
    border: none;
    outline: none;
    background: transparent;
    color: white;
    border-bottom: 1px solid #ffffff70;
    text-align: left;
    opacity: 1;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    font-size: clamp(11px, 0.95vh, 13px);
    line-height: 1.35;
    text-align: left;
}

.detail-owner-box {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 12px;
    row-gap: 6px;
}

.detail-owner-box .area-right-panel-owner-image {
    grid-column: 1;
    grid-row: 1 / 3;
}

.detail-owner-box .area-right-panel-owner-name,
.detail-owner-box .area-right-panel-owner-job,
.detail-owner-box .area-right-panel-owner-clear {
    grid-column: 2;
}

.detail-shell-box,
.detail-polyzone-box,
.detail-mlo-shell-box,
.detail-world-billboard-box {
    min-height: 160px;
}

/* Admin final layout pass */
.admin-menu-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(1580px, calc(100vw - 28px));
    height: min(930px, calc(100vh - 28px));
    margin: 0;
    transform: translate(-50%, -50%);
    grid-template-rows: 63px minmax(0, 1fr);
}

body.joblife-admin-open .bg {
    transform: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

.admin-menu-wrapper[style*="display: block"],
.admin-menu-wrapper[style*="display:block"] {
    display: grid !important;
}

@keyframes adminMenuEnter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.965);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes adminMenuExit {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.965);
    }
}

.admin-menu-live-badge {
    display: none !important;
}

.admin-menu-topbar-actions {
    min-width: 34px;
    justify-content: flex-end;
}

.admin-menu-right-wrapper {
    overflow: hidden;
}

.admin-menu-right-wrapper > .job-lists-admin-wrapper,
.admin-menu-right-wrapper > .dealership-admin-wrapper,
.admin-menu-right-wrapper > .world-config-admin-wrapper,
.admin-menu-right-wrapper > .order-items-admin-wrapper,
.admin-menu-right-wrapper > .vehicle-store-admin-wrapper,
.admin-menu-right-wrapper > .tebex-admin-wrapper {
    min-height: 0;
    overflow: hidden;
}

.admin-menu-right-wrapper .job-lists-admin-inner,
.admin-menu-right-wrapper .dealership-admin-inner,
.admin-menu-right-wrapper .world-config-admin-inner,
.admin-menu-right-wrapper .order-items-admin-shell,
.admin-menu-right-wrapper .order-items-admin-inner,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-admin-shell,
.admin-menu-right-wrapper .tebex-admin-wrapper .upgrades-admin-inner {
    min-height: 0;
}

.admin-menu-right-wrapper .job-lists-admin-hero,
.admin-menu-right-wrapper .upgrades-admin-hero,
.admin-menu-right-wrapper .world-config-admin-hero {
    border-color: var(--dadmin-line);
    background: var(--dadmin-surface);
}

.admin-menu-right-wrapper .job-lists-admin-badge-live,
.admin-menu-right-wrapper .job-lists-admin-pill,
.admin-menu-right-wrapper .tebex-type-badge,
.admin-menu-right-wrapper .vehicle-store-meta-pill,
.admin-menu-right-wrapper .order-items-job-chip {
    border-color: var(--dadmin-accent-line);
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
}

.admin-menu-right-wrapper .world-config-mosaic {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 14px;
}

.admin-menu-right-wrapper .world-config-tile,
.admin-menu-right-wrapper .job-lists-admin-card,
.admin-menu-right-wrapper .job-lists-admin-hint-card,
.admin-menu-right-wrapper .upgrades-admin-card,
.admin-menu-right-wrapper .tebex-product-card,
.admin-menu-right-wrapper .order-items-group-card,
.admin-menu-right-wrapper .vehicle-store-vehicle-card {
    border: 1px solid var(--dadmin-line);
    border-radius: 14px;
    background: var(--dadmin-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.admin-menu-right-wrapper .world-config-tile-title,
.admin-menu-right-wrapper .order-items-group-section-label,
.admin-menu-right-wrapper .order-items-field-label,
.admin-menu-right-wrapper .tebex-field > span,
.admin-menu-right-wrapper .world-config-mini-label {
    color: var(--dadmin-muted-2);
}

.admin-menu-right-wrapper .world-config-coord-title,
.admin-menu-right-wrapper .upgrades-section-title,
.admin-menu-right-wrapper .job-lists-section-title,
.admin-menu-right-wrapper .order-items-group-title {
    color: var(--dadmin-text);
}

.admin-menu-right-wrapper .world-config-tile-hint,
.admin-menu-right-wrapper .job-lists-admin-desc,
.admin-menu-right-wrapper .upgrades-admin-desc {
    color: var(--dadmin-muted);
}

.admin-menu-right-wrapper .world-config-coord-wrap,
.admin-menu-right-wrapper .order-items-group-body,
.admin-menu-right-wrapper .order-items-group-section,
.admin-menu-right-wrapper .vehicle-store-vehicle-card .order-items-group-section {
    border-color: var(--dadmin-line);
    background: rgba(255, 255, 255, 0.035);
}

.admin-menu-right-wrapper .world-config-coord-actions .world-config-coord-pick.btn,
.admin-menu-right-wrapper .order-items-npc-pick.btn,
.admin-menu-right-wrapper .order-items-admin-toolbar .btn,
.admin-menu-right-wrapper .job-lists-open-add-job-btn,
.admin-menu-right-wrapper .job-lists-btn-add {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
}

.admin-menu-right-wrapper .world-config-tile.world-config-tile--span-full .form-input--tight,
.admin-menu-right-wrapper .form-input,
.admin-menu-right-wrapper input,
.admin-menu-right-wrapper select,
.admin-menu-right-wrapper textarea {
    width: 100% !important;
}

.admin-menu-right-wrapper .world-config-mini-field,
.admin-menu-right-wrapper .tebex-field,
.admin-menu-right-wrapper .order-items-field,
.admin-menu-right-wrapper .job-lists-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-field-desc {
    display: block;
    margin-top: 2px;
    color: var(--dadmin-muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.82;
}

.world-config-we-shopclose .admin-field-desc,
.dsl-plate-row .admin-field-desc {
    flex-basis: 100%;
    margin-left: 22px;
}

.admin-menu-right-wrapper .job-lists-admin-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 16px;
}

.admin-menu-right-wrapper .job-list-admin-row {
    min-height: 54px;
}

.admin-menu-right-wrapper .order-items-item-rows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

.admin-menu-right-wrapper .order-items-item-card {
    width: auto;
    flex: none;
    min-width: 0;
    padding: 34px 12px 12px;
    border-radius: 12px;
}

.admin-menu-right-wrapper .order-items-item-preview {
    width: 64px;
    height: 64px;
}

.admin-menu-right-wrapper .order-items-group-body {
    gap: 12px;
    padding: 12px;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) {
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 12px;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card {
    border-color: var(--dadmin-line);
    background: var(--dadmin-surface);
    transform: none;
    filter: none;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card:hover {
    border-color: var(--dadmin-accent-line);
    transform: none;
    filter: none;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-head {
    background: rgba(255, 255, 255, 0.035);
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-preview {
    width: 96px;
    min-height: 124px;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-item-fields {
    gap: 7px 8px;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-field-label {
    color: var(--dadmin-muted-2);
    font-size: 9px;
}

.admin-menu-right-wrapper .tebex-admin-products {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 12px;
}

.admin-menu-right-wrapper .tebex-product-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-menu-route-dropdown:not(.is-open) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 1280px) {
    .admin-menu-wrapper {
        width: calc(100vw - 18px);
        height: calc(100vh - 18px);
    }

    .admin-menu-right-wrapper .job-lists-admin-body,
    .admin-menu-right-wrapper .tebex-product-meta {
        grid-template-columns: 1fr;
    }

    .admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    }
}



/* ██╗          ███████╗ ██████╗ ██████╗     ███████╗ █████╗ ██╗     ███████╗             ██╗ */
/* ██╔╝▄ ██╗▄    ██╔════╝██╔═══██╗██╔══██╗    ██╔════╝██╔══██╗██║     ██╔════╝    ▄ ██╗▄  ██╔╝ */
/* ██╔╝  ████╗    ██║    ██║     ██████╔╝█████╗  ███████║   ██║   █████╗       ████╗ ██╔╝  */
/* ██╔╝  ▀╚██╔▀    ╚═╝    ██║     ██╔══██╗██╔══╝  ██╔══██║   ██║   ██╔══╝      ▀╚██╔▀██╔╝   */
/* ██╔╝     ╚═╝     ██║     ╚██████╔╝██║  ██║    ███████║██║  ██║███████╗███████╗      ╚═╝██╔╝    */
/* ╚═╝              ╚═╝      ╚═════╝ ╚═╝  ╚═╝    ╚══════╝╚═╝  ╚═╝╚══════╝╚══════╝         ╚═╝     */


.forsale-box-wrapper {
    width: 50%;
    height: 12%;
    position: absolute;
    margin: 49% 68%;
    z-index: 5;
}


.forsale-box-letter {
    width: 5%;
    height: 38%;
    background: #000000ba;
    color: white;
    float: left;
    border-radius: 11px;
    margin-left: 19%;
    padding: 15px;
    text-align: center;
}

.forsale-screen {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    margin: 0;
    padding: 0;
    /* opacity: 0; */
    z-index: 5;
    pointer-events: none;
}

body.forsale-fullscreen-active .forsale-screen {
    z-index: 9998;
    pointer-events: auto;
}


.forsale-box {
    width: auto;
    height: 38%;
    border-radius: 7px;
    margin: 0 23vh;
    text-align: center;
    padding: 9px;
    font-size: 1.2vh;
    color: white;
    background: #000000ba;
    /* border: 1px solid #b3b3b3; */
    font-size: 1.34vh;
    max-width: 30%;
}


/* ██╗          ███████╗ █████╗ ██╗     ███████╗        ███████╗ ██████╗██████╗ ███████╗███████╗███╗   ██╗             ██╗ */
/* ██╔╝▄ ██╗▄    ██║    ██╔════╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝██╔════╝    ██╔════╝██╔════╝██╔════╝╚══██╔══╝██║██╔═══██╗████╗  ██║    ▄ ██╗▄  ██╔╝ */
/* ██╔╝  ████╗    ██║    ██║     ██████╔╝█████╗  ███████║   ██║   █████╗      ███████╗█████╗  ██║        ██║   ██║██║   ██║██╔██╗ ██║     ████╗ ██╔╝  */
/* ██╔╝  ▀╚██╔▀    ╚════██║██╔══██║██║     ██╔══╝          ╚════██║██║     ██╔══██╗██╔══╝  ██╔══╝  ██║╚██╗██║    ▀╚██╔▀██╔╝   */
/* ██╔╝     ╚═╝     ███████║██║  ██║███████╗███████║   ██║   ██║╚██████╔╝██║ ╚████║      ╚═╝██╔╝    */
/* ╚═╝               ╚══▀▀═╝  ╚═════╝ ╚══════╝╚══════╝   ╚═╝   ╚═╝ ╚═════╝ ╚═╝  ╚═══╝         ╚═╝     */


.sale-screen {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    /* background: rgba(0, 0, 0, 0.151); */
    background-image: url(/html/img//forsale-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9999;
}

.sale-screen-close {
    position: fixed;
    right: clamp(1rem, 3vw, 4rem);
    top: clamp(1rem, 2vh, 2.4rem);
    color: white;
    height: auto;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .35rem;
    z-index: 2;
}

#closep {
    float: left;
    background: #ffffff2b;
    height: 67%;
    padding: 9px;
    border-radius: 5px;
    font-weight: 700;
    top: -45%;
    position: relative;
}


/* SALE SCREEN - LEFT SIDE */

.sale-screen-left {
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(18rem, 24vw, 30rem);
    height: 100%;
    flex: 0 0 auto;
    background: rgb(0, 0, 0);
    background: linear-gradient(92deg, rgba(0, 255, 76, 0.625) -20%, rgba(0, 0, 0, 0) 47%);
    padding: clamp(1rem, 2.2vw, 2.6rem);

}


.sale-screen-left-areaimg {
    width: 100%;
    height: 37%;
    margin-top: 41%;
    background-image: url("https://cdn.discordapp.com/attachments/1106256169296724059/1209642519785246810/Desktop2024.02.21-02.16.03.03-ezgif.com-crop.gif?ex=65e7aa62&is=65d53562&hm=fa753b548bdff6d9c42bf0951efc7285e34a621343f5380153231e2eaa2bc443&");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 15%;
    border-radius: 12px;
}

.sale-screen-left-areaheader {
    text-align: center;
    font-weight: 700;
    font-size: 3vh;
    color: white;
    margin-top: 7%;
}

.sale-screen-left-arealabel {
    color: white;
    opacity: 0.7;
    font-size: 1.2vh;
    text-align: center;
    margin-top: 2%;
}

/* SALE SCREEN - RIGHT SIDE */

.sale-screen-right {
    position: absolute;
    right: clamp(0.6rem, 1.4vw, 1.3rem);
    top: 0;
    margin-left: auto;
    width: clamp(19rem, 24vw, 32rem);
    height: 100%;
    flex: 0 0 auto;
    padding: clamp(1rem, 2.2vw, 2.6rem);
    background: linear-gradient(269deg, rgba(0, 0, 0, 0.6250875350140056) 20%, rgba(0, 0, 0, 0) 46%);
    background-image: url(/html/img//rightbox-bg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 0;
}

.sale-screen-right .sale-screen-rightbox:first-child {
    margin-top: clamp(10rem, 22vh, 18rem) !important;
}

.sale-screen-rightbox {
    width: 123%;
    /* background: red; */
    height: clamp(4.2rem, 7.4vh, 6.8rem);
    min-height: 4.2rem;
    text-align: center;
    margin-top: clamp(0.45rem, 1.1vh, 0.9rem);
    font-size: 2vh;
    color: white;
    display: flex;
    align-items: center;
    /* border-bottom: 0.4px solid #ffffff33; */
    background-image: url(/html/img//bankfee.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.sale-screen-rightbox-header {
    background: #ff000000;
    width: 34%;
    max-width: 50%;
    height: 79%;
    overflow: hidden;
    font-size: 1.22vh;
    font-weight: 400;
    margin-top: 3%;
    text-align: left;
    margin-left: 28%;
}


.sale-screen-rightbox-header p {
    margin-top: 0%;
    font-size: 0.7vh;
    opacity: 0.6;
    max-height: 48%;
    overflow: hidden;
}


.sale-screen-rightbox-price {
    width: 42%;
    font-size: 1.7vh;
    font-weight: 200;
    padding: 13px;
}

.sale-screen-rightbox-usability-wrapper {
    width: 49%;
    min-height: 94%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    align-content: center;
    font-size: 0.95vh;
}

.sale-screen-rightbox-usability-box {
    width: 100%;
    min-height: 1.28rem;
    margin: 0;
    padding: 0.18rem 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0000009e;
    opacity: 0.6;
    transition: .1s all;
    font-size: 0.9vh;
    border-radius: 10px;
}

.sale-screen-rightbox-usability-box:hover {
    background: #ffda10e0;
    border: 1px solid #ffd900e0;
    color: black;
    font-weight: 500;
    opacity: 1.0;
    border-radius: 12px;
}


.activeUsability {
    background: #ffffff4f;
    border: 1px solid white;
    color: black;
    font-weight: 500;
    opacity: 1.0;
    border-radius: 12px;
    color: white;
}

.selectUsability {
    background: #ffda10e0;
    border: 1px solid #ffd900e0;
    color: black;
    font-weight: 500;
    opacity: 1.0;
    border-radius: 12px;
}


.sale-screen-action-row {
    position: relative;
    top: 5%;
    display: flex;
    align-items: center;
    gap: 1.2%;
    width: 100%;
    height: clamp(3.8rem, 6.4vh, 5.2rem);
}

.sale-screen-confirm-button {
    width: 61%;
    height: 100%;
    border-radius: 8px;
    text-align: center;
    padding: 0 1.1rem;
    color: white;
    background: rgba(0, 255, 55, 0.64);
    font-size: 1.34vh;
    position: relative;
    transition: .1s all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-screen-confirm-button:hover {
    background: rgb(0, 255, 55);
    filter: drop-shadow(0 0 0.75rem rgb(0, 255, 55));
}

.sale-screen-webstore-button {
    width: 14%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(55, 55, 55, 0.86);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.15vh;
    transition: .15s all;
}

.sale-screen-webstore-button svg {
    width: 2.35vh;
    height: 2.35vh;
}

.sale-screen-webstore-button span {
    font-size: 0.82vh;
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.sale-screen-webstore-button:hover {
    background: rgba(255, 190, 50, 0.95);
    color: #181818;
    filter: drop-shadow(0 0 0.7rem rgba(255, 190, 50, 0.65));
}

.sale-screen-decline-button {
    width: 19%;
    height: 100%;
    text-align: center;
    color: white;
    font-size: 1.34vh;
    border-radius: 8px;
    /* margin: 4vh 2vh; */
    padding: 0 1.1rem;
    background: rgba(224, 7, 7, 0.64);
    position: relative;
    transition: .1s all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-screen-decline-button:hover {
    background: rgb(224, 7, 7);
    filter: drop-shadow(0 0 0.75rem rgb(224, 7, 7));
}

.sale-tebex-modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 200001;
}

.sale-tebex-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(8px);
}

.sale-tebex-modal-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(54vh, 70vw);
    background: rgba(16, 16, 16, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2.2vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
    transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.sale-tebex-modal-wrapper.is-status-active .sale-tebex-modal-card {
    opacity: 0.24;
    filter: blur(1.5px);
    transform: translate(-50%, -50%) scale(0.98);
}

.sale-tebex-status-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
}

.sale-tebex-modal-wrapper.is-loading .sale-tebex-status-overlay,
.sale-tebex-modal-wrapper.is-success .sale-tebex-status-overlay {
    display: flex;
}

.sale-tebex-status-circle {
    width: 10vh;
    height: 10vh;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4.6vh;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    border: 0.3vh solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 2.6vh rgba(0, 0, 0, 0.5), inset 0 0 2vh rgba(255, 255, 255, 0.08);
    transform: scale(0.92);
    opacity: 0;
    animation: saleTebexStatusIn 0.22s ease forwards;
}

.sale-tebex-modal-wrapper.is-loading .sale-tebex-status-circle {
    color: #ffd27a;
    border-color: rgba(255, 190, 50, 0.38);
    box-shadow: 0 0 2.8vh rgba(255, 179, 35, 0.25), inset 0 0 2vh rgba(255, 255, 255, 0.08);
}

.sale-tebex-modal-wrapper.is-loading .sale-tebex-status-circle i {
    animation: saleTebexSpin 0.8s linear infinite;
}

.sale-tebex-modal-wrapper.is-success .sale-tebex-status-circle {
    color: #74ffad;
    border-color: rgba(116, 255, 173, 0.62);
    box-shadow: 0 0 3.5vh rgba(0, 255, 140, 0.42), inset 0 0 2vh rgba(116, 255, 173, 0.12);
    animation: saleTebexSuccessCircle 0.48s cubic-bezier(.2, 1.25, .28, 1) forwards;
}

.sale-tebex-modal-wrapper.is-success .sale-tebex-status-circle i {
    animation: saleTebexSuccessPop 0.36s ease-out;
}

.sale-tebex-status-text {
    margin-top: 1.4vh;
    color: #fff;
    font-size: 1.55vh;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 0 1vh rgba(0, 0, 0, 0.8);
}

@keyframes saleTebexStatusIn {
    from { transform: scale(0.82); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes saleTebexSuccessCircle {
    0% { transform: scale(0.9); opacity: 0.65; }
    62% { transform: scale(1.14); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.sale-tebex-modal-title {
    color: #fff;
    font-size: 2vh;
    font-weight: 700;
    margin-bottom: 0.7vh;
}

.sale-tebex-modal-text {
    color: rgba(255, 255, 255, 0.77);
    font-size: 1.3vh;
    margin-bottom: 1.2vh;
}

.sale-tebex-link-box {
    width: 100%;
    min-height: 4.2vh;
    border-radius: 8px;
    border: 1px solid rgba(255, 190, 50, 0.35);
    background: rgba(255, 190, 50, 0.08);
    color: rgba(255, 232, 190, 0.95);
    display: flex;
    align-items: center;
    padding: 0.7vh 1vh;
    margin-bottom: 1vh;
    overflow: hidden;
}

.sale-tebex-link-text {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.25vh;
    user-select: text;
}

.sale-tebex-code-input {
    width: 100%;
    height: 4.6vh;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 0 1.2vh;
    font-size: 1.4vh;
    outline: none;
}

.sale-tebex-error-message {
    color: #ff6b6b;
    font-size: 1.25vh;
    margin-top: 0.7vh;
    min-height: 1.6vh;
}

.sale-tebex-modal-buttons {
    margin-top: 1.5vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8vh;
}

.sale-tebex-modal-button {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.25vh;
    height: 4.2vh;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55vh;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.sale-tebex-modal-button:disabled,
.sale-tebex-modal-button.disabled,
.sale-tebex-code-input:disabled {
    cursor: default;
    opacity: 0.72;
}

.sale-tebex-redeem-button {
    background: rgba(0, 200, 80, 0.75);
    border-color: rgba(0, 255, 102, 0.6);
}

.sale-tebex-redeem-button:disabled {
    cursor: default;
    opacity: 0.95;
}

.sale-tebex-redeem-button.is-loading {
    background: rgba(255, 179, 35, 0.82);
    border-color: rgba(255, 220, 130, 0.9);
    color: #141414;
}

.sale-tebex-redeem-button.is-success {
    background: rgba(0, 215, 105, 0.92);
    border-color: rgba(110, 255, 180, 0.95);
    transform: scale(1.03);
    box-shadow: 0 0 1.1vh rgba(0, 255, 140, 0.45);
}

.sale-tebex-redeem-button.is-loading .sale-tebex-button-icon {
    animation: saleTebexSpin 0.8s linear infinite;
}

.sale-tebex-redeem-button.is-success .sale-tebex-button-icon {
    animation: saleTebexSuccessPop 0.34s ease-out;
}

@keyframes saleTebexSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes saleTebexSuccessPop {
    0% { transform: scale(0.65); opacity: 0.35; }
    70% { transform: scale(1.22); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.sale-tebex-copy-button {
    background: rgba(255, 179, 35, 0.8);
    border-color: rgba(255, 208, 120, 0.8);
    color: #141414;
    font-weight: 700;
}

/* 
    ██╗          ████████╗ █████╗ ██████╗ ██╗     ███████╗████████╗                 ██╗
   ██╔╝▄ ██╗▄    ╚══██╔══╝██╔══██╗██╔══██╗██║     ██╔════╝╚══██╔══╝        ▄ ██╗▄  ██╔╝
  ██╔╝  ████╗       ██║   ███████║██████╔╝██║     █████╗     ██║            ████╗ ██╔╝ 
 ██╔╝  ▀╚██╔▀       ██║   ██╔══██║██╔══██╗██║     ██╔══╝     ██║           ▀╚██╔▀██╔╝  
██╔╝     ╚═╝        ██║   ██║  ██║██████╔╝███████╗███████║   ██║             ╚═╝██╔╝   
╚═╝                 ╚═╝   ╚═╝  ╚═╝╚═════╝ ╚══════╝╚══════╝   ╚═╝                ╚═╝    
                                                                                        */

.tablet-wrapper {
    width: calc(75% + 1vh);
    height: 87%;
    display: none;
    position: relative;
    margin: 3.2% auto;
    padding: 0.5vh;
    /* background-color: rgb(32, 32, 32); */
}

.tablet-bg {
    position: relative;
    width: calc(100% + 1vh);
    height: 100%;
    margin: 0% auto;
    /* top: 2%;
    z-index: 2; */
    /* left: 0.4%; */
    overflow: hidden;
    /* background-image: url(/html/img/tablet-bg/tablet-bg2.png); */
    background-color: var(--tablet-scene-bg, #0f0f0f);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 1rem;
    border: 4px solid var(--tablet-frame-border, #878787eb);
    z-index: 0;
    transform: translateY(100%);
    --tablet-content-top: 12%;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(38deg, rgb(6 6 6) 0%, rgb(68 68 68 / 45%) 100%);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    border-radius: 1rem;
}

.loading-screen.fade-out {
    opacity: 0;
}

.loading-logo {
    width: 120px;
    height: 120px;
    background-image: url('/html/img/tablet-bg/tablet-bg2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    margin-top: -4%;
    animation: pulse 2s infinite;
}

.loading-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #4cdf9b, #0df188);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    animation: loadingShine 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes loadingShine {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

@keyframes tabletSlideIn {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}

@keyframes tabletSlideOut {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(100%);
    }
}

.tablet-page-background {
    background-image: url(/html/img/tablet-bg/home-page-bg2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0%;
    position: absolute;
    background-color: #0c0c0c;
    z-index: -1;
    border-radius: 1rem;
}


.tablet-frame {
    /* background-image: url(/html/img//tablet-frame.png); */
    /* background-image: url(/html/img/tablet-frame.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; */
    border: 1px solid red;
    border-radius: 3rem;
    width: calc(100% + 1vh);
    height: calc(100% + 1vh);
    z-index: 999;
    position: absolute;
    float: inherit;
}


.tablet-question-wrapper {
    height: 100%;
    width: 100%;
    background: rgba(6, 8, 12, 0.62);
    z-index: 9999999;
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    backdrop-filter: blur(4px);
    box-sizing: border-box;
}


.tablet-quesiton-box {
    width: min(520px, 100%);
    min-height: 220px;
    background:
        radial-gradient(ellipse 86% 58% at 10% -8%, rgba(255, 255, 255, 0.08), transparent 64%),
        linear-gradient(180deg, rgba(20, 20, 21, 0.94), rgba(12, 12, 13, 0.96));
        margin: 24% 35%;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 14px;
    box-sizing: border-box;
}

.tablet-question-icon {
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-top: 0;
    position: relative;
    padding: 0;
    color: #f55151;
}

.tablet-question-header {
    font-size: clamp(0.9rem, 1.2vh, 1.04rem);
    font-weight: 700;
    height: auto;
    margin-top: 0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.tablet-question-label {
    width: 100%;
    height: auto;
    font-size: clamp(0.72rem, 0.96vh, 0.82rem);
    font-weight: 400;
    color: rgba(226, 232, 240, 0.84);
    line-height: 1.45;
}

.tablet-question-boxes {
    width: 100%;
    height: auto;
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.tablet-question-box {
    margin: 0;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
    width: 100%;
    min-height: 36px;
    text-align: center;
    padding: 9px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.14s ease, border-color 0.14s ease, color 0.14s ease, transform 0.14s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.68rem, 0.92vh, 0.78rem);
    font-weight: 600;
}

.tablet-question-confirm:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(74, 222, 128, 0.34);
    cursor: pointer;
    transform: translateY(-1px);
}

.tablet-question-decline:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(248, 113, 113, 0.34);
    cursor: pointer;
    transform: translateY(-1px);
}


.notify-wrapper {
    height: calc(7% + 1vh);
    width: calc(29% + 1vh);
    border-radius: 6px;
    backdrop-filter: blur(15px);
    transition: .1s all;
    position: absolute;
    margin: calc(-3% + 1vh) calc(34% + 1vh);
    border: 1px solid #8080802e;
    background: #b4b4b408;
    padding: 4px;
    transition: .1s all;
    z-index: 99999999;
    color: var(--text-color);
    display: none;
}

.notify-icon {
    width: 18%;
    float: left;
    font-size: 4vh;
    margin-left: 2vh;
    text-align: center;
    filter: drop-shadow(2px 4px 16px black);
    margin-top: 1%;
}


.notify-header {
    width: 35%;
    margin-left: 22%;
    font-size: 1.8vh;
    margin-top: 2%;
    color: var(--text-color);
}


.notify-label {
    width: 60%;
    height: 37%;
    /* margin-left: 33%; */
    font-size: 1vh;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    color: var(--text-color);
}

.tablet-header-company-infos {
    padding: 18px;
    width: 100%;
    height: 12%;
    margin-bottom: -4%;
    color: var(--text-color);
    border-bottom: 1px solid #80808017;
    display: flex;
    align-items: center;
    gap: 1.2%;
    box-sizing: border-box;
}


.tablet-company-info-box {
    width: 17.2%;
    height: 100%;
    margin-left: 2%;
    float: left;
    border-right: 1px solid #80808017;
    box-sizing: border-box;
}

.tablet-company-info-close {
    background: #ff6565;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    position: absolute;
    right: 4.5rem;
    top: 1.5rem;
}

.tablet-company-info-close:hover {
    background: #ff4a4a;
    cursor: pointer;
}

.tablet-company-infos-bg {
    width: 18%;
    height: 57%;
    background-image: url(/html/img/companyimages/tojungle.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28%;
    float: left;
    margin-top: 8%;
}


.tablet-company-infos-name {
    width: 60%;
    margin-left: 23%;
    margin-top: 1.5rem;
    font-weight: 200;
    height: 33%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    background: -webkit-linear-gradient(297deg, #fffefe 12%, #999999 83%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tablet-company-infos-type {
    opacity: 0.5;
    font-size: 1.2vh;
    width: 60%;
    margin-left: 24%;
    margin-top: -0.4rem;
}

.tablet-company-player-img {
    background-image: url(/html/img/user.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 2.85rem;
    height: 2.85rem;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    margin: 0;
    border-radius: 50%;
    border: 1px solid #cd97ffad;
    box-sizing: border-box;
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: center;
}

.tablet-company-info-box--player {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 0.55rem;
    row-gap: 0.12rem;
    width: 15%;
    min-width: 9.5rem;
    margin-left: 0;
    padding: 0 0.65rem;
    box-sizing: border-box;
}

.tablet-company-info-box--player .tablet-company-player-text {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    float: none;
    width: auto;
    align-self: end;
}

.tablet-company-info-box--player .tablet-company-player-name {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    float: none;
    width: auto;
    align-self: start;
}

.tablet-company-player-text {
    text-align: left;
    font-size: 0.75vh;
    opacity: 0.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tablet-company-player-name {
    font-size: 1.02vh;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tablet-level {
    width: 100%;
    height: 100%;
    margin: 0;
}

#container {
    position: relative;
    width: 100%;
    height: 100%;
}

.tablet-company-level-box {
    width: 14%;
    min-width: 9.5rem;
    margin-left: 0;
    padding: 8px 12px;
    border-right: 0;
    /* border-left: 1px solid var(--tablet-box-border, rgba(255, 255, 255, 0.06)); */
}

.tablet-level #container {
    --badge-main: #9ca3af;
    --badge-mid: #d1d5db;
    --badge-accent: #f8fafc;
    --badge-bg: rgba(156, 163, 175, 0.08);
    --badge-inner: rgba(156, 163, 175, 0.12);
    --badge-border: rgba(248, 250, 252, 0.2);
    --badge-glow: rgba(209, 213, 219, 0.25);
    display: grid;
    grid-template-columns: 3.45rem minmax(0, 1fr);
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    column-gap: 0.7rem;
    /* padding: 7px 10px; */
    /* border-radius: var(--tablet-box-radius, 12px);
    border: 1px solid var(--tablet-box-border, rgba(255, 255, 255, 0.06));
    background: var(--tablet-box-bg, linear-gradient(180deg, rgba(20, 20, 21, 0.18), rgba(12, 12, 13, 0.05)));
    box-shadow: var(--tablet-box-shadow, 0 4px 12px rgba(0, 0, 0, 0.16)); */
    box-sizing: border-box;
    overflow: hidden;
}

.tablet-level svg {
    grid-row: 1 / 4;
    width: 3.45rem;
    height: 3.45rem;
    filter: drop-shadow(0 0 10px var(--badge-glow));
}

svg {
    width: 100%;
    height: auto;
}

.background {
    fill: #444;
}

.xp-fill {
    fill: none;
    stroke: url(#xp-gradient);
    stroke-width: 8;
}

.xp-gradient-start {
    stop-color: var(--badge-accent);
}

.xp-gradient-mid {
    stop-color: var(--badge-mid);
}

.xp-gradient-end {
    stop-color: var(--badge-main);
}

.tablet-level .background {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.tablet-level .xp-fill {
    fill: none;
    stroke: url(#xp-gradient);
    stroke-width: 8;
    filter: drop-shadow(0 0 6px var(--badge-glow));
}

.level-badge-bg {
    fill: var(--badge-bg);
    stroke: var(--badge-border);
    stroke-width: 2.8;
    stroke-linejoin: round;
}

.level-badge-inner {
    fill: var(--badge-inner);
    stroke: var(--badge-main);
    stroke-width: 2.3;
    stroke-linejoin: round;
}

.level-badge-company-mark {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.45));
}

.company-badge-tower {
    fill: rgba(15, 23, 42, 0.62);
    stroke: var(--badge-main);
    stroke-width: 4;
    stroke-linejoin: round;
}

.company-badge-base {
    fill: none;
    stroke: var(--badge-accent);
    stroke-width: 4.5;
    stroke-linecap: round;
}

.company-badge-door {
    fill: var(--badge-main);
    stroke: var(--badge-accent);
    stroke-width: 1.6;
    opacity: 0.95;
}

.company-badge-window {
    fill: none;
    stroke: var(--badge-accent);
    stroke-width: 4.2;
    stroke-linecap: round;
    opacity: 1;
}

.tablet-level.badge-tier-rookie #container {
    --badge-main: #8b949e;
    --badge-mid: #c9d1d9;
    --badge-accent: #f0f6fc;
    --badge-bg: rgba(139, 148, 158, 0.08);
    --badge-inner: rgba(139, 148, 158, 0.12);
    --badge-border: rgba(240, 246, 252, 0.2);
    --badge-glow: rgba(201, 209, 217, 0.18);
}

.tablet-level.badge-tier-basic #container {
    --badge-main: #22c55e;
    --badge-mid: #86efac;
    --badge-accent: #dcfce7;
    --badge-bg: rgba(34, 197, 94, 0.08);
    --badge-inner: rgba(34, 197, 94, 0.14);
    --badge-border: rgba(220, 252, 231, 0.24);
    --badge-glow: rgba(34, 197, 94, 0.28);
}

.tablet-level.badge-tier-skilled #container {
    --badge-main: #facc15;
    --badge-mid: #cbd5e1;
    --badge-accent: #fff7ed;
    --badge-bg: rgba(250, 204, 21, 0.09);
    --badge-inner: rgba(15, 23, 42, 0.34);
    --badge-border: rgba(250, 204, 21, 0.38);
    --badge-glow: rgba(250, 204, 21, 0.34);
}

.tablet-level.badge-tier-pro #container {
    --badge-main: #3b82f6;
    --badge-mid: #93c5fd;
    --badge-accent: #dbeafe;
    --badge-bg: rgba(59, 130, 246, 0.09);
    --badge-inner: rgba(59, 130, 246, 0.16);
    --badge-border: rgba(219, 234, 254, 0.28);
    --badge-glow: rgba(59, 130, 246, 0.36);
}

.tablet-level.badge-tier-elite #container {
    --badge-main: #14b8a6;
    --badge-mid: #5eead4;
    --badge-accent: #ccfbf1;
    --badge-bg: rgba(20, 184, 166, 0.1);
    --badge-inner: rgba(20, 184, 166, 0.18);
    --badge-border: rgba(204, 251, 241, 0.3);
    --badge-glow: rgba(20, 184, 166, 0.38);
}

.tablet-level.badge-tier-epic #container {
    --badge-main: #a855f7;
    --badge-mid: #d8b4fe;
    --badge-accent: #f3e8ff;
    --badge-bg: rgba(168, 85, 247, 0.1);
    --badge-inner: rgba(168, 85, 247, 0.2);
    --badge-border: rgba(243, 232, 255, 0.34);
    --badge-glow: rgba(168, 85, 247, 0.45);
}

.tablet-level.badge-tier-mythic #container {
    --badge-main: #ec4899;
    --badge-mid: #f9a8d4;
    --badge-accent: #fce7f3;
    --badge-bg: rgba(236, 72, 153, 0.11);
    --badge-inner: rgba(236, 72, 153, 0.22);
    --badge-border: rgba(252, 231, 243, 0.36);
    --badge-glow: rgba(236, 72, 153, 0.5);
}

.tablet-level.badge-tier-legendary #container {
    --badge-main: #f59e0b;
    --badge-mid: #fcd34d;
    --badge-accent: #fffbeb;
    --badge-bg: rgba(245, 158, 11, 0.12);
    --badge-inner: rgba(245, 158, 11, 0.24);
    --badge-border: rgba(255, 251, 235, 0.42);
    --badge-glow: rgba(245, 158, 11, 0.55);
}

.tablet-level.badge-tier-immortal #container {
    --badge-main: #ef4444;
    --badge-mid: #f97316;
    --badge-accent: #fef2f2;
    --badge-bg: rgba(239, 68, 68, 0.13);
    --badge-inner: rgba(249, 115, 22, 0.25);
    --badge-border: rgba(254, 242, 242, 0.45);
    --badge-glow: rgba(239, 68, 68, 0.58);
}

#level-text {
    position: absolute;
    color: white;
    margin-top: -79%;
    margin-left: 11%;
    font-size: .9vh;
    text-align: center;
    width: 79%;
}

.tablet-level #level-text {
    position: static;
    width: auto;
    margin: 0;
    align-self: end;
    color: var(--text-color);
    font-size: 1.05vh;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tablet-company-tier {
    color: var(--badge-mid);
    font-size: 0.54vh;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0.9;
    text-shadow: 0 0 10px var(--badge-glow);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3%;
    margin-top: 2%;
}

#xp-text {
    position: absolute;
    font-size: 0.6vh;
    color: white;
    opacity: 0.5;
    font-weight: 200;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.tablet-level #xp-text {
    position: static;
    width: auto;
    margin: 0;
    align-self: start;
    color: var(--text-color);
    font-size: 0.68vh;
    line-height: 1.2;
    text-align: left;
    opacity: 0.58;
    text-transform: uppercase;
    text-overflow: ellipsis;
}

.mask-path {
    stroke-width: 8;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 0 10000;
    transition: stroke-dasharray 0.5s ease;
}

/* .tablet-company-xp {
    font-weight: 100;
    font-size: 1.2vh;
    opacity: 0.67;
} */

/* .tablet-company-leveltext {
    font-weight: 800;
} */


.tablet-close-screen-text {
    display: flex;
    padding: 15px 5px;
    width: 18%;
    height: 6.5%;
    margin-left: 77%;
    position: absolute;
    margin-top: 0%;
}

.tablet-close-screen-text p {
    top: -1rem;
    position: relative;
    background: #ffffff;
    width: fit-content;
    height: 100%;
    padding: 3px;
    color: black;
    font-weight: 800;
    border-radius: 4px;
    font-size: 1.2vh;
    margin-right: 3%;
    white-space: nowrap;
}

.tablet-header-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-sizing: border-box;
    margin: 0;
    width: 20%;
    height: calc(100% - var(--tablet-content-top));
    float: left;
    color: rgba(241, 245, 249, 0.9);
    /* background: linear-gradient(180deg, rgba(16, 18, 22, 0.72), rgba(8, 9, 12, 0.5)); */
    /* border-right: 1px solid var(--tablet-box-border, rgba(255, 255, 255, 0.06)); */
    /* backdrop-filter: blur(10px);hayr */
    /* -webkit-backdrop-filter: blur(10px); */
    z-index: 109;
    position: absolute;
    left: 0;
    top: var(--tablet-content-top);
    padding: 18px 12px 14px 12px;
}

.tablet-header-button {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    min-height: 40px;
    padding: 10px 12px;
    text-align: left;
    font-size: clamp(12px, 1.42vh, 15px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
    border-radius: 8px;
    border: 1px solid transparent;
    border-left: 2px solid transparent;
    color: rgba(226, 232, 240, 0.55);
    background: transparent;
    opacity: 1;
    position: relative;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tablet-header-button-has-submenu {
    padding-right: 26px;
}

.tablet-header-button-has-submenu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(148, 163, 184, 0.55);
    transition: transform 150ms ease, border-top-color 150ms ease;
}

.tablet-header-button:hover {
    color: rgba(248, 250, 252, 0.95);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: none;
    filter: none;
}

.tablet-header-button-clicked {
    color: rgba(248, 250, 252, 0.98);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(235, 235, 235, 0.5);
}

.tablet-header-button-clicked.tablet-header-button-has-submenu::after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: rgba(226, 232, 240, 0.85);
}

.tablet-header-button i {
    display: inline-block;
    width: 1.25em;
    font-size: 1.05em;
    margin-right: 10px;
    text-align: center;
    color: rgba(148, 163, 184, 0.85);
}

.tablet-header-button.tablet-app[data-appname="tebex-page"] {
    color: rgba(255, 231, 170, 0.72);
    background: rgba(214, 164, 55, 0.055);
    border-color: rgba(214, 164, 55, 0.08);
    border-left-color: rgba(214, 164, 55, 0.32);
}

.tablet-header-button.tablet-app[data-appname="tebex-page"] i {
    color: rgba(255, 205, 92, 0.82);
}

.tablet-header-button.tablet-app[data-appname="tebex-page"]:hover {
    color: rgba(255, 240, 200, 0.95);
    background: rgba(214, 164, 55, 0.105);
    border-color: rgba(214, 164, 55, 0.16);
    border-left-color: rgba(255, 205, 92, 0.5);
}

.tablet-header-button.tablet-app[data-appname="tebex-page"].tablet-header-button-clicked {
    color: rgba(255, 245, 218, 0.98);
    background: rgba(214, 164, 55, 0.14);
    border-color: rgba(214, 164, 55, 0.22);
    border-left-color: rgba(255, 205, 92, 0.68);
}

/* Owner: tablet şirket oturumunu kapat (nav, settings değil) */
.tablet-header-button.tablet-header-end-session {
    color: rgba(252, 165, 165, 0.9);
    border-color: rgba(239, 68, 68, 0.22);
    border-left-color: rgba(239, 68, 68, 0.35);
}

.tablet-header-button.tablet-header-end-session i {
    color: rgba(248, 113, 113, 0.95);
}

.tablet-header-button.tablet-header-end-session:hover {
    color: rgba(254, 226, 226, 0.98);
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.32);
    border-left-color: rgba(239, 68, 68, 0.55);
}

.tablet-header-button.tablet-header-end-session:hover i {
    color: rgba(254, 202, 202, 0.98);
}

.tablet-page.tebex-page {
    color: var(--text-color);
    overflow: hidden !important;
}

.tablet-tebex-page-shell {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    gap: 14px;
    box-sizing: border-box;
}

.tablet-tebex-card {
    border-radius: var(--tablet-box-radius, 12px);
    border: 1px solid var(--tablet-box-border, rgba(255, 255, 255, 0.06));
    background: var(--tablet-box-bg, linear-gradient(180deg, rgba(20, 20, 21, 0.78), rgba(12, 12, 13, 0.78)));
    box-shadow: var(--tablet-box-shadow, 0 4px 14px rgba(0, 0, 0, 0.22));
    padding: 18px;
    box-sizing: border-box;
    min-width: 0;
}

.tablet-tebex-card-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.tablet-tebex-card-main::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -20%;
    width: 48%;
    height: 70%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 190, 50, 0.16), transparent 68%);
    pointer-events: none;
}

.tablet-tebex-card-main > * {
    position: relative;
    z-index: 1;
}

.tablet-tebex-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tablet-tebex-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 190, 50, 0.24);
    background: rgba(255, 190, 50, 0.08);
    color: rgba(255, 221, 150, 0.95);
    font-size: clamp(0.7rem, 0.9vh, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tablet-tebex-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(116, 255, 173, 0.18);
    background: rgba(116, 255, 173, 0.06);
    color: rgba(184, 255, 218, 0.86);
    font-size: clamp(0.68rem, 0.86vh, 0.78rem);
    font-weight: 800;
    white-space: nowrap;
}

.tablet-tebex-title {
    font-size: clamp(1.6rem, 3vh, 2.35rem);
    font-weight: 800;
    line-height: 1;
}

.tablet-tebex-desc,
.tablet-tebex-hint {
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(0.78rem, 1.04vh, 0.92rem);
    line-height: 1.5;
}

.tablet-tebex-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
}

.tablet-tebex-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(0.68rem, 0.86vh, 0.78rem);
    font-weight: 700;
}

.tablet-tebex-feature i {
    color: rgba(255, 205, 92, 0.82);
}

.tablet-tebex-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    min-height: 0;
}

.tablet-tebex-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.tablet-tebex-code-input {
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.34);
    color: #fff;
    padding: 0 14px;
    text-align: left;
    font-size: 0.95rem;
}

.tablet-tebex-redeem-button {
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 120, 0.34);
    background: rgba(0, 200, 90, 0.72);
    color: #fff;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.tablet-tebex-redeem-button:disabled,
.tablet-tebex-code-input:disabled {
    cursor: default;
    opacity: 0.72;
}

.tablet-tebex-redeem-button.is-loading .tablet-tebex-redeem-button-icon {
    animation: saleTebexSpin 0.8s linear infinite;
}

.tablet-tebex-error {
    min-height: 18px;
    color: #ff6b6b;
    font-size: 0.82rem;
    opacity: 0;
}

.tablet-tebex-error.is-visible {
    opacity: 1;
}

.tablet-tebex-result-card {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tablet-tebex-result-card::after {
    content: "";
    position: absolute;
    inset: -40% auto auto -35%;
    width: 70%;
    height: 140%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(116, 255, 173, 0.08), transparent 68%);
    opacity: 0.65;
    pointer-events: none;
    animation: tabletTebexResultGlow 4.8s ease-in-out infinite;
}

.tablet-tebex-result-card:hover {
    transform: translateY(-2px);
    border-color: rgba(116, 255, 173, 0.22);
    box-shadow: var(--tablet-box-shadow, 0 4px 14px rgba(0, 0, 0, 0.22)), 0 0 26px rgba(116, 255, 173, 0.08);
}

.tablet-tebex-result-card.is-result-success {
    animation: tabletTebexResultPop 0.52s cubic-bezier(.2, 1.2, .28, 1) both;
    border-color: rgba(116, 255, 173, 0.34);
}

.tablet-tebex-result-card.is-result-success::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 74%);
    transform: translateX(-120%);
    animation: tabletTebexResultShimmer 0.82s ease-out 0.08s both;
    pointer-events: none;
}

.tablet-tebex-result-card > * {
    position: relative;
    z-index: 1;
}

.tablet-tebex-result-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(116, 255, 173, 0.95);
    font-size: 2rem;
    background: rgba(116, 255, 173, 0.08);
    border: 1px solid rgba(116, 255, 173, 0.2);
    box-shadow: 0 0 24px rgba(0, 255, 140, 0.12);
    flex: 0 0 auto;
    animation: tabletTebexIconFloat 3.6s ease-in-out infinite;
}

.tablet-tebex-result-card.is-result-success .tablet-tebex-result-icon {
    animation: tabletTebexIconSuccess 0.48s ease-out both, tabletTebexIconFloat 3.6s ease-in-out 0.48s infinite;
}

@keyframes tabletTebexResultGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.42; }
    50% { transform: translate3d(18px, 10px, 0) scale(1.08); opacity: 0.78; }
}

@keyframes tabletTebexResultPop {
    0% { transform: scale(0.98); }
    55% { transform: scale(1.025); }
    100% { transform: scale(1); }
}

@keyframes tabletTebexResultShimmer {
    0% { transform: translateX(-120%); opacity: 0; }
    25% { opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}

@keyframes tabletTebexIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes tabletTebexIconSuccess {
    0% { transform: scale(0.86) rotate(-6deg); }
    60% { transform: scale(1.12) rotate(4deg); }
    100% { transform: scale(1) rotate(0); }
}

.tablet-tebex-result-content {
    min-width: 0;
}

.tablet-tebex-result-title {
    font-size: clamp(0.9rem, 1.2vh, 1rem);
    font-weight: 800;
    margin-bottom: 4px;
}

.tablet-tebex-result-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.76rem, 1vh, 0.9rem);
    line-height: 1.45;
}

.tablet-tebex-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.tablet-tebex-result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
}

.tablet-tebex-steps-card {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tablet-tebex-mini-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.78rem, 1vh, 0.9rem);
    font-weight: 900;
}

.tablet-tebex-mini-title i {
    color: rgba(255, 205, 92, 0.8);
}

.tablet-tebex-step {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 9px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(0.7rem, 0.9vh, 0.82rem);
}

.tablet-tebex-step b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 190, 50, 0.12);
    color: rgba(255, 225, 160, 0.96);
    flex: 0 0 auto;
}

.tablet-tebex-status-overlay {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 4;
    pointer-events: none;
}

.tablet-tebex-page-shell.is-status-active .tablet-tebex-status-overlay {
    display: flex;
}

.tablet-tebex-page-shell.is-status-active .tablet-tebex-card {
    filter: blur(1.4px);
    opacity: 0.28;
}

.tablet-tebex-status-circle {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: #ffd27a;
    border: 3px solid rgba(255, 190, 50, 0.38);
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    box-shadow: 0 0 30px rgba(255, 179, 35, 0.22), inset 0 0 22px rgba(255, 255, 255, 0.08);
    animation: saleTebexStatusIn 0.22s ease forwards;
}

.tablet-tebex-page-shell.is-loading .tablet-tebex-status-circle i {
    animation: saleTebexSpin 0.8s linear infinite;
}

.tablet-tebex-page-shell.is-success .tablet-tebex-status-circle {
    color: #74ffad;
    border-color: rgba(116, 255, 173, 0.62);
    box-shadow: 0 0 38px rgba(0, 255, 140, 0.42), inset 0 0 22px rgba(116, 255, 173, 0.12);
    animation: saleTebexSuccessCircle 0.48s cubic-bezier(.2, 1.25, .28, 1) forwards;
}

.tablet-tebex-page-shell.is-success .tablet-tebex-status-circle i {
    animation: saleTebexSuccessPop 0.36s ease-out;
}

.tablet-tebex-status-text {
    margin-top: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1100px) {
    .tablet-tebex-page-shell {
        grid-template-columns: 1fr;
    }

    .tablet-tebex-feature-row {
        grid-template-columns: 1fr;
    }

    .tablet-tebex-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .tablet-tebex-card-top,
    .tablet-tebex-input-row,
    .tablet-tebex-side {
        grid-template-columns: 1fr;
    }

    .tablet-tebex-card-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

.tablet-header-button:hover i,
.tablet-header-button-clicked i {
    color: rgba(226, 232, 240, 0.9);
}

/* Kasa: rozet varken gövdeyi soluk — rozet yokken diğer sekmelerle aynı (ekstra opacity yok) */
.tablet-header-button.tablet-app[data-appname="case-page"].tablet-case-nav-has-badge .tablet-nav-button-body {
    opacity: 0.55;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.tablet-header-button.tablet-app[data-appname="case-page"]:hover .tablet-nav-button-body,
.tablet-header-button.tablet-app[data-appname="case-page"].tablet-header-button-clicked .tablet-nav-button-body {
    opacity: 1;
}

.tablet-case-invoice-badge {
    display: none;
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 1.75vh;
    height: 1.75vh;
    padding: 0 0.42vh;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    font-size: 1.05vh;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    background: linear-gradient(165deg, rgba(62, 168, 118, 0.95), rgba(32, 110, 78, 0.98));
    border: 1px solid rgba(142, 245, 196, 0.45);
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 2px 8px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 4;
}

.tablet-header-sub-buttons {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 4px 0 2px 10px;
    width: calc(100% - 10px);
    height: fit-content;
    padding: 4px 0 6px 15px;
    color: rgba(226, 232, 240, 0.88);
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: opacity 180ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    transform: translateY(0);
    overflow: visible;
    transform-origin: top;
    will-change: opacity, transform;
    position: relative;
}

/* Tek omurga: sol padding şeridinde — satır hover/bg çizgiyi kesmez */
.tablet-header-sub-buttons::before {
    content: "";
    position: absolute;
    left: 7px;
    top: -6px;
    bottom: 18px;
    width: 1px;
    background: rgba(49, 49, 49, 0.41);
    pointer-events: none;
    z-index: 1;
}

.tablet-header-sub-buttons:has(> :only-child)::before {
    bottom: 50%;
}

.tablet-header-sub-buttons.is-opening {
    opacity: 0;
    transform: translateY(-0.6vh);
}

.tablet-header-sub-buttons.is-closing {
    opacity: 0;
    transform: translateY(-0.6vh);
}



.tablet-header-sub-button {
    text-align: left;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 36px;
    padding: 8px 10px 8px 28px;
    box-sizing: border-box;
    opacity: 1;
    border-radius: 8px;
    border: 1px solid transparent;
    border-left: 2px solid transparent;
    font-size: clamp(11px, 1.28vh, 13px);
    font-weight: 500;
    color: rgba(203, 213, 225, 0.78);
    background: transparent;
    position: relative;
}

/* Yatay dal: omurga 7px’te, satır içerik 15px’te başlar → -8px kaydır */
.tablet-header-sub-button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 1px;
    transform: translate(-8px, -50%);
    background: rgba(49, 49, 49, 0.41);
    pointer-events: none;
    z-index: 1;
}

/* settings.js ile eklenen tablet-page-left-side-box global width:20% veriyordu */
.tablet-header-sub-button.tablet-page-left-side-box {
    width: 100%;
    max-width: none;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tablet-header-sub-button:hover {
    color: rgba(248, 250, 252, 0.95);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: none;
    filter: none;
}

.tablet-header-sub-button.tablet-header-button-clicked {
    color: rgba(248, 250, 252, 0.98);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(235, 235, 235, 0.5);
}

.tablet-header-sub-button.tablet-header-button-clicked i {
    color: rgba(226, 232, 240, 0.9);
}

.tablet-header-sub-button i {
    margin-right: 8px;
    width: 1.1em;
    display: inline-block;
    text-align: center;
    color: rgba(148, 163, 184, 0.75);
}

.tablet-header {
    width: 10%;
    height: 3%;
    background: rgb(16 16 16 / 0%);
    display: flex;
    z-index: 1;
    margin: 0 auto;
    top: 2%;
    position: relative;
    color: white;
    backdrop-filter: blur(2px);
    border-radius: 4px;
    align-items: center;
    text-align: center;
    display: flex;
    margin-left: 81%;
}

.tablet-header-darkmode {
    color: rgb(19, 19, 19);
}

.tablet-header-box {
    width: 6%;
    height: 100%;
    margin-left: 1%;
    font-size: 1.3vh;
}

.wifi {
    font-size: 1.3vh;
    margin-left: 23%;
    /* margin-left: 69%; */
    position: relative;
    width: 2%;
    margin-top: 1%;
}

.battery {
    position: relative;
    margin-top: 1%;
    width: 67%;
}

.date {
    width: 17%;
    margin-top: 1%;
    opacity: 0.4;
}


.tablet-page {
    width: 80%;
    height: calc(100% - var(--tablet-content-top));
    display: none;
    margin-top: 0%;
    left: 20%;
    top: var(--tablet-content-top);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    position: absolute;
    max-height: calc(100% - var(--tablet-content-top));
    box-sizing: border-box;
}


.tablet-page-header {
    position: relative;
    top: 3%;
    width: 100%;
    height: 8%;
    color: var(--text-color);
    font-size: 4vh;
    font-weight: 400;
    text-align: center;
}

.tablet-home-page-best-employe {
    background-image: url(/html/img/tablet-bg/best-employe-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    min-height: 9.5rem;
    aspect-ratio: auto;
    margin-top: 0;
    margin-left: 0;
    color: var(--text-color);
    padding: 10px;
    float: none;
    box-sizing: border-box;
    border-radius: var(--home-card-radius, 14px);
    border: 1px solid var(--home-card-border, rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tablet-home-page-best-employe-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 72%;
    height: 64%;
    border-radius: 9px;
    margin: 0 auto;
}

.tablet-home-page-best-employe-name {
    width: 100%;
    text-align: center;
    font-size: 1.2vh;
    margin-top: 5%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tablet-home-page-best-employe-alt {
    width: 100%;
    text-align: center;
    font-size: 1vh;
    margin-top: 2%;
    opacity: 0.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tablet-home-page-announcement-wrapper {
    background-image: url(/html/img/tablet-bg/announce-box.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    min-height: 9.5rem;
    margin-left: 0;
    margin-top: 0;
    padding: 10px 12px;
    color: var(--text-color);
    box-sizing: border-box;
    border-radius: var(--home-card-radius, 14px);
    border: 1px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tablet-page.home-page .tablet-home-page-announcement-header {
    font-size: clamp(0.65rem, 1vh, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    margin: 0 0 6px 0;
    width: auto;
    max-width: 100%;
    padding-right: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tablet-page.home-page .tablet-home-page-announcement-text {
    font-size: clamp(0.7rem, 1.1vh, 0.95rem);
    margin: 0;
    width: 100%;
    max-height: 7.5rem;
    height: auto;
    overflow: auto;
    line-height: 1.45;
    opacity: 0.92;
}

.tablet-page.home-page .tablet-home-page-announcement-edit-button {
    position: absolute;
    top: 6px;
    right: 6px;
    margin: 0;
    width: auto;
    height: auto;
    font-size: 1rem;
}

.tablet-page.home-page .tablet-home-page-announcement-button-wrapper {
    position: absolute;
    top: 6px;
    right: 34px;
    margin: 0;
    display: flex;
    gap: 6px;
    width: auto;
    height: auto;
    font-size: 1.2rem;
}

.tablet-page.home-page .tablet-home-page-announcement-wrapper {
    position: relative;
}

.tablet-home-page-announcement-header {
    font-size: 1vh;
    font-weight: 200;
    letter-spacing: 3px;
    margin-left: 20%;
    width: 41%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

}

.tablet-home-page-announcement-text {
    font-size: 1.2vh;
    margin-left: 20%;
    width: 69%;
    height: 97%;
    overflow: auto;
}


.tablet-home-page-announcement-edit-button {
    background: -webkit-linear-gradient(31deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-left: 91%;
    margin-top: -4%;
    margin-bottom: 2%;
    width: 4%;
    height: 19%;
    text-align: center;
}

.tablet-home-page-announcement-edit-button:hover {
    color: var(--hover-color);
    cursor: pointer;
}

.tablet-home-page-announcement-button-wrapper {
    margin-left: 83%;
    margin-top: -4%;
    margin-bottom: 2%;
    display: flex;
    width: 13%;
    height: 18%;
    height: 19%;
    font-size: 1.7vh;
}

.announcement-button {
    margin: 0 auto;
    height: 100%;
    width: 23%;
}

.announcement-button:hover {
    /* color: var(--hover-color); */
    cursor: pointer;
}

.announcement-button-confirm {
    color: #39ff39;
    filter: drop-shadow(1px 2px 8px #39ff39);
}


.announcement-button-decline {
    color: #ff3939;
    filter: drop-shadow(1px 2px 8px #ff3939);
}


.tablet-home-page-info-wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    height: auto;
    min-height: 0;
    color: var(--text-color);
    margin-bottom: 0;
    padding: 10px;
    background: var(--home-card-bg, rgba(255, 255, 255, 0.035));
    border: 1px solid var(--home-card-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--home-card-radius, 14px);
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tablet-home-page-info-wrapper.info-wrapper-dealership-part {
    min-height: 0;
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: inset 0 1px 0 rgba(56, 189, 248, 0.08);
}

.tablet-home-page-info-line-wrapper {
    display: flex;
    align-items: center;
    gap: 1vw;
    /* yazı ile çizgi arası boşluk */
}

.tablet-home-page-info-headline {
    font-size: 1.2vh;
    white-space: nowrap;
    padding: 0px 2px;
    margin-left: 3%;
}

.tablet-home-page-info-line {
    flex-grow: 1;
    height: 1px;
    background: #3e3d3d59;
}



.tablet-home-page-info-boxes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    height: auto;
    margin-top: 6px;
}

.tablet-page.home-page .tablet-home-page-info-line-wrapper {
    gap: 6px;
    margin-bottom: 0;
}

.tablet-home-page-info-box {
    background-image: url(/html/img/tablet-bg/overview-box.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0;
    min-height: 5.5rem;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tablet-home-page-info-icon {
    float: left;
    width: 0%;
    font-size: 6vh;
    opacity: 0.1;
    left: 11%;
    margin: 10%;
    margin-left: -9%;
}

.tablet-home-page-info-header {
    width: 100%;
    height: 19%;
    font-size: 1.2vh;
    margin-top: 16%;
    text-align: center;
}

.tablet-home-page-info-amount {
    margin: 0 auto;
    width: 50%;
    text-align: center;
    font-weight: 600;
    font-size: 1.8vh;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tablet-home-page-case {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.3rem;
    width: 13.4rem;
    height: 5.7rem;
    background: linear-gradient(328deg, #2bff00 18%, #144109 136%);
    border-radius: 7px;
    border: 1px solid #00ff43a6;
    filter: drop-shadow(-1px 2px 5px #2bff007a);
}

.tablet-home-page-case i {
    text-align: center;
    width: 100%;
    height: 23%;
    font-size: 2vh;
    color: white;
    margin-top: 7%;
}

.tablet-widget-box-cash {
    width: 57%;
    height: 29%;
    text-align: center;
    font-weight: 700;
    color: white;
    font-size: 1.7vh;
    margin: 0 auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.tablet-widget-box-cash-label {
    width: 100%;
    text-align: center;
    font-size: 1vh;
    color: #ffffffcc;
}

.tablet-page-header-back-icon {
    background: #dbd8d81f;
    width: fit-content;
    white-space: nowrap;
    padding: 8px 13px;
    height: 50%;
    text-align: center;
    font-size: 1.8vh;
    border-radius: 7px;
    margin-top: 1%;
    left: 7%;
    color: white;
    transition: .1s all;
    position: absolute;
    display: flex;
    font-size: 1.2vh;
    text-align: center;
    padding: 8px;
}

.tablet-page-header-back-icon i {
    font-size: 2vh;
    margin-right: 3%;
}

.tablet-page-header-back-icon:hover {
    scale: 1.2;
    cursor: pointer;
}


i.fa-solid.fa-battery-three-quarters {
    margin-left: 11%;
}

.tablet-widget-time-and-date {
    color: var(--text-color);
    width: 15rem;
    text-align: center;
    font-size: 2vh;
    font-family: 'Montserrat';
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: -4%;
}

/* Global tablet-page bounds (all pages) */
.tablet-bg {
    position: relative;
    background-color: var(--tablet-scene-bg);
}

.tablet-header-company-infos,
.tablet-header-buttons,
.tablet-page {
    background: var(--tablet-shell-bg);
}

.tablet-header-company-infos {
    border-bottom-color: var(--tablet-box-border);
}

.tablet-header-buttons {
    border-right-color: var(--tablet-box-border);
}

.tablet-bg > .tablet-page {
    position: absolute !important;
    left: 20% !important;
    width: 80% !important;
    top: var(--tablet-content-top) !important;
    height: 88% !important;
    max-height: 88% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 33px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

@media (max-width: 1280px) {
    .tablet-bg > .tablet-page {
        left: 22% !important;
        width: 78% !important;
    }
}

/* Home page layout (single source with child rules below) */
.tablet-page.home-page {
    --home-card-radius: 12px;
    --home-card-bg: linear-gradient(180deg, rgba(10, 12, 16, 0.82), rgba(6, 8, 12, 0.82));
    --home-card-border: rgba(255, 255, 255, 0.05);
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: min-content;
    gap: 6px !important;
    padding: 33px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    height: 100%;
    min-height: 0;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    align-content: start !important;
}

.tablet-page.home-page .tablet-home-page-incoming-ads,
.tablet-page.home-page .tablet-home-page-case {
    display: none !important;
}

.tablet-page.home-page .tablet-widget-time-and-date,
.tablet-page.home-page .tablet-home-page-best-employe,
.tablet-page.home-page .tablet-home-page-announcement-wrapper,
.tablet-page.home-page .tablet-home-page-info-wrapper {
    border-radius: var(--tablet-box-radius, var(--home-card-radius));
    border: 1px solid var(--tablet-box-border, var(--home-card-border));
    background: var(--tablet-box-bg, var(--home-card-bg)) !important;
    box-shadow: var(--tablet-box-shadow, none);
    box-sizing: border-box;
}

.tablet-page.home-page .tablet-widget-time-and-date {
    grid-column: 1 / -1;
    margin: 0 !important;
    padding: 10px 12px !important;
    text-align: left !important;
    border-radius: var(--tablet-box-radius, 12px);
    border-color: rgba(255, 255, 255, 0.075);
}

.tablet-page.home-page .tablet-widget-time-and-date p {
    margin: 0 !important;
}

.tablet-page.home-page .tablethour-widget {
    font-size: clamp(2.2rem, 3.6vh, 2.9rem) !important;
    font-weight: 650 !important;
    line-height: 1.05;
}

.tablet-page.home-page .tablet-date-widget {
    font-size: clamp(1rem, 1.55vh, 1.15rem) !important;
    opacity: 0.8;
}

.tablet-page.home-page .tablet-home-page-best-employe {
    grid-column: 1 / span 3 !important;
    width: 100% !important;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    gap: 6px;
    border-radius: var(--tablet-box-radius, 12px);
}

.tablet-page.home-page .tablet-home-page-best-employe-image {
    width: 68px !important;
    height: 68px !important;
    border-radius: 10px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tablet-page.home-page .tablet-home-page-best-employe-name {
    width: 100%;
    margin: 0 !important;
    text-align: center;
    font-size: clamp(0.85rem, 1.25vh, 1rem) !important;
    font-weight: 600;
    opacity: 0.95;
}

.tablet-page.home-page .tablet-home-page-best-employe-alt {
    width: 100%;
    margin: 0 !important;
    text-align: center;
    font-size: clamp(0.68rem, 1vh, 0.82rem) !important;
    opacity: 0.6;
}

.tablet-page.home-page .tablet-home-page-announcement-wrapper {
    grid-column: 4 / -1 !important;
    width: 100% !important;
    min-height: 132px;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
}

.tablet-page.home-page .tablet-home-page-announcement-header {
    margin: 0 0 6px 0 !important;
    width: 100% !important;
    max-width: 100%;
    padding-right: 32px;
    font-size: clamp(0.8rem, 1.15vh, 0.95rem) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.92;
}

.tablet-page.home-page .tablet-home-page-announcement-text {
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 90px;
    font-size: clamp(0.9rem, 1.3vh, 1.02rem) !important;
    line-height: 1.45;
    opacity: 0.88;
}

.tablet-page.home-page .tablet-home-page-info-wrapper {
    grid-column: 1 / -1 !important;
    width: 100%;
    min-height: 0;
    margin: 0 !important;
    padding: 14px 16px !important;
    border-radius: var(--tablet-box-radius, 12px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-sizing: border-box;
}

.tablet-page.home-page .tablet-home-page-info-wrapper.info-wrapper-dealership-part {
    border-color: rgba(180, 220, 94, 0.22);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.028);
}

.tablet-page.home-page .tablet-home-page-info-line-wrapper {
    margin-bottom: 0;
    gap: 6px;
    flex-shrink: 0;
}

.tablet-page.home-page .tablet-home-page-info-headline {
    margin-left: 0;
    font-size: clamp(0.86rem, 1.18vh, 1rem);
    font-weight: 600;
    opacity: 0.9;
}

.tablet-page.home-page .tablet-home-page-info-boxes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 !important;
    margin-top: 0 !important;
    min-height: 110px;
    align-content: stretch;
    align-items: stretch;
    box-sizing: border-box;
}

.tablet-page.home-page .tablet-home-page-info-box {
    width: 100%;
    min-height: 0 !important;
    height: auto;
    margin: 0 !important;
    overflow: hidden;
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 10px;
    row-gap: 6px;
    padding: 4px 14px !important;
    border: none !important;
    border-radius: 0;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    box-sizing: border-box;
}

.tablet-page.home-page .tablet-home-page-info-box:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.07) !important;
    padding-left: 20px !important;
}

.tablet-page.home-page .tablet-home-page-info-box:first-child {
    padding-left: 0 !important;
}

.tablet-page.home-page .tablet-home-page-info-box:last-child {
    padding-right: 0 !important;
}

.tablet-page.home-page .tablet-home-page-info-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    float: none;
    width: 34px;
    margin: 0;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    opacity: 0.32;
}

.tablet-page.home-page .tablet-home-page-info-header {
    grid-column: 2;
    grid-row: 1;
    height: auto;
    margin: 0 !important;
    margin-top: 0 !important;
    text-align: left;
    font-size: clamp(0.95rem, 1.25vh, 1.08rem) !important;
    font-weight: 500;
    opacity: 0.88;
}

.tablet-page.home-page .tablet-home-page-info-amount {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin: 0 !important;
    text-align: left;
    font-size: clamp(1.45rem, 2.2vh, 1.9rem) !important;
    font-weight: 700;
    opacity: 0.98;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tablet-widget-wrapper {
    /* border: 1px solid rgb(166, 255, 0); */
    /* background-color: rgba(255, 0, 255, 0.089); */
    width: 23%;
    height: 61%;
    top: 10%;
    margin: 0% auto;
    margin-left: 10%;
    float: left;
    position: relative;
    color: var(--text-color);
}

.tablet-widget-box {
    background: rgb(157 153 153 / 51%);
    backdrop-filter: blur(1px);
    width: 91%;
    height: 30%;
    border-radius: 4%;
    float: left;
    margin: 1%;
    box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: .1s all;
}

/* widget-map */
.tablet-widget-box-map {
    background-image: url(/html/img//app-images/widget-map.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 9% auto;
    border-radius: 12px;
    width: 75%;
    height: 83%;
    opacity: 0.7;
    filter: grayscale(50%);
}

/* widget date */
.date-container {
    height: 100%;
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 17% auto;
    color: white;
}

.day {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

.month,
.year {
    font-size: 1.5em;
    margin: 0;
}


.tablet-app-wrapper {
    /* border: 1px solid red; */
    width: 82%;
    margin: 0% auto;
    top: 10%;
    position: relative;
    height: 75%;
    color: white;
    /* display: flex; */
    flex-direction: row;

}

/* .tablet-app {
    width: 5.4%;
    float: left;
    height: 11%;
    margin: 2%;
    transition: .1s all;
} */

/* App opening animation */
.app-opening-animation {
    animation: appOpen 0.5s ease-out;
    transform-origin: center;
}

@keyframes appOpen {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.tablet-app:hover {
    /* scale: 1.2; */
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.753));

}

.app-icon {
    background-image: url(/html/img//icon.png);
    background-position: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.app-name {
    font-size: 1vh;
    text-align: center;
    width: 100%;
    overflow: hidden;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: 'Montserrat';
    /* font-family: "Inter", sans-serif; */
    opacity: .9;
    /* filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)); */
    filter: drop-shadow(3px 2px 11px rgba(0, 0, 0, 1.6));
    margin-top: 10%;
}



/* ██╗           ██████╗ ██╗   ██╗███████╗███████╗████████╗██╗ ██████╗ ███╗   ██╗             ██╗
   ██╔╝▄ ██╗▄    ██╔═══██╗██║   ██║██╔════╝██╔════╝╚══██╔══╝██║██╔═══██╗████╗  ██║    ▄ ██╗▄  ██╔╝
  ██╔╝  ████╗    ██║   ██║██║   ██║█████╗  ███████║   ██║   ██║██║   ██║██╔██╗ ██║     ████╗ ██╔╝ 
 ██╔╝  ▀╚██╔▀    ██║▄▄ ██║██║   ██║██╔══╝  ╚════██║   ██║   ██║██║   ██║██║╚██╗██║    ▀╚██╔▀██╔╝  
██╔╝     ╚═╝     ██║     ╚██████╔╝███████╗███████║   ██║   ██║╚██████╔╝██║ ╚████║      ╚═╝██╔╝   
╚═╝               ╚══▀▀═╝  ╚═════╝ ╚══════╝╚══════╝   ╚═╝   ╚═╝ ╚═════╝ ╚═╝  ╚═══╝         ╚═╝    
                                                                                                   */
.question-wrapper {
    position: absolute;
    width: 29%;
    margin: 0 auto;
    height: 19%;
    margin-top: 46%;
    margin-left: 38%;
    background: rgb(255, 204, 33);
    background: linear-gradient(359deg, rgba(255, 204, 33, 1) -110%, rgba(28, 28, 28, 0) 44%);
    text-align: center;
    overflow: auto;
    display: none;
}

.question-header {
    width: 100%;
    height: 24%;
    font-size: 2.4vh;
    color: white;
    font-weight: 600;
}

.question-label {
    color: white;
    font-size: 1vh;
    opacity: 0.54;
    height: 25%;
    width: 100%;
}


.question-boxes {
    display: flex;
    margin: 0 auto;
    width: 69%;
    height: 38%;
}

.question-box {
    background: grey;
    margin-left: 40%;
    height: 67%;
    width: 13%;
    border-radius: 50%;
    text-align: center;
    padding: 13px;
    font-size: 2vh;
    font-weight: 500;
}

.question-confrim {
    margin-left: 17%;
    color: #fffcfc;
    background: #4ad14a;
}

.question-decline {
    color: #fffcfc;
    background: #d14a4a;
}



/* general keybinds */
.general-keybinds-list {
    position: fixed;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5vh 1vh;
    display: flex;
    gap: 1vh;
    align-items: center;
    justify-content: center;
    border-radius: 0.3vh;
    display: none;
}

.general-keybind-box {
    display: flex;
    align-items: center;
    gap: 0.5vh;
    height: 3vh;
    float: left;
}

.general-keybind-box-letter {
    background: white;
    color: black;
    font-size: 1.2vh;
    font-weight: 700;
    padding: 0.3vh 0.6vh;
    border-radius: 0.2vh;
    min-width: 1.5vh;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 0 0.2vh rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.general-keybind-box-letterimg {
    width: 2vh;
    height: 2vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0);
}

.general-keybind-box-label {
    color: white;
    font-size: 1.1vh;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05vh;
    white-space: nowrap;
}

.area-placement-warning {
    margin-top: 0.6vh;
    display: flex;
    align-items: center;
    gap: 0.5vh;
    color: #ff7b7b;
    font-size: 1.1vh;
    font-weight: 600;
}

/* -----------------------------------------------------------
   Responsive Compatibility Layer (non-breaking overrides)
   ----------------------------------------------------------- */

@media (max-width: 1680px) {
    .admin-menu-wrapper {
        width: min(1380px, 94vw);
        height: min(860px, 88vh);
        margin: 6vh auto;
    }

    .admin-menu-left-wrapper {
        width: 19%;
    }

    .admin-menu-right-wrapper {
        left: 19%;
        width: 81%;
        padding: 14px;
        overflow: auto;
    }

    .area-left-panel-area-box {
        width: 31%;
        height: 40%;
    }
}

@media (max-width: 1440px) {
    .admin-menu-wrapper {
        width: 96vw;
        height: 90vh;
        margin: 4vh auto;
    }

    .admin-menu-header {
        width: 220px;
        height: 64px;
        padding: 0 16px;
        font-size: 12px;
    }

    .admin-menu-left-wrapper {
        width: 220px;
        padding: 76px 10px 10px 10px;
    }

    .admin-menu-right-wrapper {
        left: 220px;
        width: calc(100% - 220px);
        padding: 12px;
    }

    .area-left-panel-wrapper {
        margin: 4% auto;
        padding: 16px;
    }

    .area-left-panel-area-box {
        width: 31.5%;
        height: 38%;
    }

    .tablet-wrapper {
        width: calc(82% + 1vh);
        height: calc(90% + 1vh);
        margin: 2.4% auto;
    }
}

@media (max-width: 1280px) {
    .admin-menu-wrapper {
        width: 97vw;
        height: 92vh;
        margin: 3vh auto;
        border-radius: 12px;
    }

    .admin-menu-header {
        width: 200px;
        height: 58px;
    }

    .admin-menu-left-wrapper {
        width: 200px;
        padding-top: 68px;
    }

    .admin-menu-right-wrapper {
        left: 200px;
        width: calc(100% - 200px);
    }

    .admin-menu-button {
        font-size: 13px;
        padding: 10px;
    }

    .area-left-panel-area-box {
        width: 48%;
        height: 34%;
    }

    .tablet-wrapper {
        width: calc(90% + 1vh);
        height: calc(92% + 1vh);
        margin: 1.6% auto;
    }

    .tablet-header-buttons {
        width: 22%;
    }

    .tablet-page {
        left: 22%;
        width: 78%;
    }
}

@media (max-width: 1024px) {
    .admin-menu-wrapper {
        width: 98vw;
        height: 94vh;
        margin: 2vh auto;
    }

    .admin-menu-header {
        width: 180px;
        font-size: 11px;
    }

    .admin-menu-left-wrapper {
        width: 180px;
        padding: 64px 8px 8px 8px;
    }

    .admin-menu-right-wrapper {
        left: 180px;
        width: calc(100% - 180px);
        padding: 10px;
    }

    .area-left-panel-area-box {
        width: 48%;
        height: 31%;
    }

    .tablet-wrapper {
        width: calc(96% + 1vh);
        height: calc(94% + 1vh);
    }
}

@media (max-width: 1024px) {
    .admin-menu-right-wrapper .area-creator-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        min-height: 0;
    }

    .admin-menu-right-wrapper .area-creator-wrapper > .area-left-panel-wrapper {
        flex: 0 0 clamp(220px, 36%, 360px);
        max-width: none;
        width: auto;
        max-height: 100%;
    }

    .admin-menu-right-wrapper .area-creator-wrapper > .area-right-panel-wrapper {
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

@media (max-width: 720px) {
    .area-right-panel-create-section-input-wrapper {
        grid-template-columns: 1fr;
    }

    .area-right-panel-create-footer .create-section-box {
        flex: 1 1 100%;
        min-width: 0;
    }
}

@media (max-height: 900px) {
    .admin-menu-wrapper {
        height: 92vh;
        margin-top: 3vh;
    }

    .area-left-panel-wrapper {
        margin-top: 2%;
    }
}

.area-right-panel-create-section-return {
    flex-shrink: 0;
    align-self: flex-start;
    padding: 6px 10px;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.9;
}

/* Dadmin-style admin shell */
.admin-menu-wrapper {
    --dadmin-bg: rgba(8, 8, 10, 0.74);
    --dadmin-sidebar: rgba(8, 8, 10, 0.76);
    --dadmin-main: rgba(12, 12, 14, 0.64);
    --dadmin-surface: rgba(18, 18, 22, 0.88);
    --dadmin-surface-2: rgba(22, 22, 27, 0.92);
    --dadmin-line: rgba(255, 255, 255, 0.08);
    --dadmin-line-soft: rgba(255, 255, 255, 0.05);
    --dadmin-text: #f4f4f5;
    --dadmin-muted: #a1a1aa;
    --dadmin-muted-2: #71717a;
    --dadmin-accent: #4ade80;
    --dadmin-accent-soft: rgba(74, 222, 128, 0.12);
    --dadmin-accent-line: rgba(74, 222, 128, 0.28);
    width: min(1320px, calc(100vw - 48px));
    height: min(860px, calc(100vh - 48px));
    margin: 24px auto;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-rows: 63px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--dadmin-line);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.52), rgba(6, 6, 8, 0.78));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    color: var(--dadmin-text);
    font-family: "Montserrat", "Segoe UI", sans-serif;
}

.admin-menu-wrapper[style*="display: block"],
.admin-menu-wrapper[style*="display:block"] {
    display: grid !important;
}

body.hlsl-active .admin-menu-wrapper,
body.hlsl-active .admin-menu-wrapper * {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

.admin-menu-header {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    padding: 12px 8px 10px;
    border-right: 1px solid var(--dadmin-line-soft);
    border-bottom: 1px solid var(--dadmin-line-soft);
    background: var(--dadmin-sidebar);
    z-index: 5;
}

.admin-menu-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--dadmin-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--dadmin-text);
    font-size: 15px;
}

.admin-menu-brand-copy {
    display: none;
}

.admin-menu-left-wrapper {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 2;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 8px;
    overflow: visible;
    border-right: 1px solid var(--dadmin-line-soft);
    background: var(--dadmin-sidebar);
    scrollbar-width: none;
}

.admin-menu-left-wrapper::-webkit-scrollbar {
    display: none;
}

.admin-menu-left-header,
.admin-menu-button-label {
    display: none !important;
}

.admin-menu-button-wrapper,
.admin-menu-route-section {
    position: relative;
    width: 100%;
    overflow: visible;
}

.admin-menu-button-wrapper {
    padding: 0;
    gap: 6px;
}

.admin-menu-button {
    position: relative;
    width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    overflow: visible;
    color: var(--dadmin-muted);
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    font-size: 15px;
    transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.admin-menu-button i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin: 0;
    color: inherit;
    border: 1px solid transparent;
    border-radius: 10px;
    text-align: center;
}

.admin-menu-button:hover {
    color: var(--dadmin-text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dadmin-line);
}

.admin-menu-button-active {
    color: var(--dadmin-accent);
    background: var(--dadmin-accent-soft);
    border-color: var(--dadmin-accent-line);
}

.admin-menu-button-active i {
    border-color: var(--dadmin-accent-line);
    background: rgba(74, 222, 128, 0.08);
}

.admin-menu-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    z-index: 60;
    display: grid;
    gap: 3px;
    width: max-content;
    max-width: 240px;
    padding: 10px 12px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    border: 1px solid var(--dadmin-line);
    border-left: 3px solid var(--dadmin-accent);
    border-radius: 10px;
    background: rgba(12, 12, 14, 0.96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%) translateX(14px);
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 180ms ease;
}

.admin-menu-button:hover .admin-menu-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.admin-menu-tooltip strong {
    color: var(--dadmin-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.admin-menu-tooltip small {
    color: var(--dadmin-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.admin-menu-route-dropdown {
    position: absolute;
    left: calc(100% + 12px);
    top: 0;
    z-index: 55;
    width: 260px;
    margin: 0;
    padding: 6px;
    border: 1px solid var(--dadmin-line);
    border-left: 3px solid var(--dadmin-accent);
    border-radius: 12px;
    background: rgba(12, 12, 14, 0.96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.admin-menu-route-dropdown:not(.is-open) {
    padding: 0;
    border-width: 0;
}

.admin-menu-route-dropdown.is-open {
    max-height: min(52vh, 440px);
    margin: 0;
    padding: 6px;
    border-left-color: var(--dadmin-accent);
}

.admin-menu-route-subbtn {
    border-radius: 8px;
    background: transparent;
}

.admin-menu-route-subbtn:hover,
.admin-menu-route-subbtn--active {
    color: var(--dadmin-accent);
    background: var(--dadmin-accent-soft);
    box-shadow: inset 0 0 0 1px var(--dadmin-accent-line);
}

.admin-menu-right-wrapper {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 2;
    grid-row: 1 / span 2;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px 20px;
    overflow: auto;
    border-left: 0;
    border-radius: 0 16px 16px 0;
    background: var(--dadmin-main);
}

.admin-menu-right-wrapper::-webkit-scrollbar,
.admin-menu-right-wrapper *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.admin-menu-right-wrapper::-webkit-scrollbar-thumb,
.admin-menu-right-wrapper *::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.admin-menu-topbar {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dadmin-line-soft);
}

.admin-menu-topbar h1 {
    margin: 0;
    color: var(--dadmin-text);
    font-size: 28px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.admin-menu-topbar p {
    margin: 6px 0 0;
    color: var(--dadmin-muted);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.admin-menu-topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-menu-live-badge {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    color: var(--dadmin-accent);
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 999px;
    background: var(--dadmin-accent-soft);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.admin-menu-live-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dadmin-accent);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.65);
}

.admin-menu-chrome-dot {
    width: 34px;
    height: 34px;
    border: 1px solid var(--dadmin-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-menu-right-wrapper > .area-creator-wrapper,
.admin-menu-right-wrapper > .route-creator-wrapper,
.admin-menu-right-wrapper > .job-lists-admin-wrapper,
.admin-menu-right-wrapper > .upgrades-admin-wrapper,
.admin-menu-right-wrapper > .dealership-admin-wrapper,
.admin-menu-right-wrapper > .world-config-admin-wrapper,
.admin-menu-right-wrapper > .order-items-admin-wrapper,
.admin-menu-right-wrapper > .vehicle-store-admin-wrapper,
.admin-menu-right-wrapper > .tebex-admin-wrapper,
.admin-menu-right-wrapper > .webhook-admin-wrapper,
.admin-menu-right-wrapper > .shell-textures-admin-wrapper {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
}

.admin-menu-right-wrapper .job-lists-admin-hero,
.admin-menu-right-wrapper .upgrades-admin-hero,
.admin-menu-right-wrapper .world-config-admin-hero {
    padding: 14px;
    border: 1px solid var(--dadmin-line);
    border-radius: 12px;
    background: var(--dadmin-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box),
.admin-menu-right-wrapper .area-right-panel-detail-box:not(.detail-world-billboard-box),
.admin-menu-right-wrapper .route-item,
.admin-menu-right-wrapper .route-import-dialog,
.admin-menu-right-wrapper .route-editor-panel,
.admin-menu-right-wrapper .job-lists-admin-card,
.admin-menu-right-wrapper .job-lists-admin-hint-card,
.admin-menu-right-wrapper .upgrades-admin-card,
.admin-menu-right-wrapper .order-items-group-card,
.admin-menu-right-wrapper .order-items-item-card,
.admin-menu-right-wrapper .vehicle-store-vehicle-card {
    border: 1px solid var(--dadmin-line);
    border-radius: 12px;
    background: var(--dadmin-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.admin-menu-right-wrapper input,
.admin-menu-right-wrapper select,
.admin-menu-right-wrapper textarea {
    color: var(--dadmin-text);
    border: 1px solid var(--dadmin-line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    outline: none;
}

.admin-menu-right-wrapper input:focus,
.admin-menu-right-wrapper select:focus,
.admin-menu-right-wrapper textarea:focus {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.admin-menu-right-wrapper button,
.admin-menu-right-wrapper .job-lists-btn-save,
.admin-menu-right-wrapper .create-section-box,
.admin-menu-right-wrapper .area-left-panel-createbutton,
.admin-menu-right-wrapper .area-left-panel-area-button,
.admin-menu-right-wrapper .area-left-panel-area-teleport-button {
    border-radius: 10px;
}

.admin-menu-right-wrapper .job-lists-btn-save,
.admin-menu-right-wrapper .area-left-panel-createbutton,
.admin-menu-right-wrapper .create-section-box-create {
    color: #052e16 !important;
    border-color: transparent !important;
    background: var(--dadmin-accent) !important;
    font-weight: 800;
}

.admin-menu-right-wrapper .area-creator-wrapper {
    gap: 14px;
}

.admin-menu-right-wrapper .area-left-panel-wrapper {
    flex: 0 0 clamp(300px, 34%, 430px);
    margin: 0;
    padding: 14px;
    border: 1px solid var(--dadmin-line);
    border-radius: 12px;
    background: var(--dadmin-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.admin-menu-right-wrapper .area-creator-wrapper:not(.is-right-open) > .area-left-panel-wrapper {
    flex: 1 1 100%;
}

.admin-menu-right-wrapper .area-creator-wrapper > .area-right-panel-wrapper {
    border: 1px solid var(--dadmin-line);
    border-radius: 12px;
    background: var(--dadmin-surface-2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1180px) {
    .admin-menu-wrapper {
        width: calc(100vw - 24px);
        height: calc(100vh - 24px);
        margin: 12px auto;
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .admin-menu-right-wrapper {
        padding: 16px;
    }

    .admin-menu-right-wrapper .area-creator-wrapper {
        flex-direction: column;
    }

    .admin-menu-right-wrapper .area-left-panel-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }
}

.area-right-panel-create-section-return:hover {
    opacity: 1;
}

/* 3D world billboard (creator + editor) — kabuk = --admin-panel-box-* */
.area-right-panel-section-input-box.area-world-billboard-box,
.detail-world-billboard-box {
    width: 100%;
    max-width: 320px;
    padding: var(--admin-panel-box-padding);
    border-radius: var(--admin-panel-box-radius);
    border: var(--admin-panel-box-border);
    background: var(--admin-panel-box-surface-bg);
    box-shadow: var(--admin-panel-box-shadow);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
}

.area-right-panel-section-input-box.area-world-billboard-box {
    justify-self: start;
}

.detail-world-billboard-box {
    grid-column: 1 / -1;
    justify-self: start;
}

.create-world-billboard-header-row,
.detail-world-billboard-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-width: 0;
    margin-bottom: 7px;
    box-sizing: border-box;
}

.create-world-billboard-header-row .create-world-billboard-title,
.detail-world-billboard-box .area-right-panel-detail-box-header {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    line-height: 1.25;
    font-size: clamp(11px, 1.05vh, 14px);
    font-weight: 550;
}

.area-world-billboard-box .create-world-billboard-help-row,
.detail-world-billboard-box .detail-world-billboard-help-row {
    position: relative;
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin: 0 !important;
    margin-left: 0 !important;
    float: none;
    text-align: center;
    opacity: 0.72;
    font-size: 0;
}

.area-world-billboard-box .create-world-billboard-help-row .tooltip-trigger,
.detail-world-billboard-box .detail-world-billboard-help-row .tooltip-trigger {
    font-size: 13px !important;
    line-height: 1;
    display: block;
}

.area-world-billboard-box .world-billboard-enable-row,
.detail-world-billboard-box .world-billboard-enable-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px;
    font-size: 12px;
    color: #d8deea;
}

.world-billboard-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 7px;
    margin-top: 0;
}

.world-billboard-actions-row {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.world-billboard-actions-row .world-billboard-edit {
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.world-billboard-label {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 0 0 auto;
    font-size: 11px;
    color: #cfd6e5;
}

.world-billboard-label .form-input {
    width: 100%;
    min-height: 30px;
    padding: 5px 9px;
    border-radius: 8px;
    font-size: 11px;
    box-sizing: border-box;
}

.world-billboard-check {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #d2d9e8;
    margin: 1px 0 0;
}

@media (max-width: 360px) {
    .world-billboard-fields {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------------------
   Global responsive layer for all css modules
   (tablet + admin + all page styles inside .bg)
   ----------------------------------------------------------- */
:root {
    --ui-scale: 1;
    /* Tablet outer frame / scene (behind sidebar + content) */
    --tablet-scene-bg: rgba(7, 9, 13, 0.92);
    /* Sidebar strip + main content panel (wrapper chrome, all pages) */
    --tablet-shell-bg: linear-gradient(180deg, rgba(20, 20, 21, 0.7), rgba(12, 12, 13, 0.7));
    /* Inset cards / metric boxes */
    --tablet-box-bg: linear-gradient(180deg, rgba(20, 20, 21, 0.18), rgba(12, 12, 13, 0.05));
    --tablet-box-border: rgba(255, 255, 255, 0.045);
    --tablet-box-radius: 12px;
    --tablet-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

/* CEF/FiveM safe proportional scaling:
   Instead of touching every module file, scale the parent scene
   so all child CSS files stay visually consistent. */
.bg {
    transform: scale(var(--ui-scale));
    transform-origin: center center;
    width: calc(100% / var(--ui-scale));
    height: calc(100% / var(--ui-scale));
    margin: 0 auto;
}

/* Dealership full-screen needs true edge-to-edge coverage without global UI scale gutters. */
body.dealership-fullscreen-active .bg {
    transform: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Sale screen also needs true edge-to-edge coverage without ui-scale gutters. */
body.sale-fullscreen-active .bg {
    transform: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

body.forsale-fullscreen-active .bg {
    transform: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

body.auction-fullscreen-active .bg {
    transform: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

@media (max-width: 1920px), (max-height: 1080px) {
    :root { --ui-scale: 0.97; }
}

@media (max-width: 1680px), (max-height: 990px) {
    :root { --ui-scale: 0.93; }
}

@media (max-width: 1536px), (max-height: 900px) {
    :root { --ui-scale: 0.89; }
}

@media (max-width: 1366px), (max-height: 820px) {
    :root { --ui-scale: 0.84; }
}

@media (max-width: 1280px), (max-height: 760px) {
    :root { --ui-scale: 0.79; }
}

@media (max-width: 1024px), (max-height: 680px) {
    :root { --ui-scale: 0.72; }
}

/* Çoklu şirket: sadece popup; alt içerik kapalı */
.tablet-bg.tablet-bg--picking-company {
    animation: none !important;
    transform: translateY(0%) !important;
}

.tablet-bg.tablet-bg--picking-company > *:not(#tabletCompanyPickerOverlay) {
    display: none !important;
}

.tablet-company-picker-overlay {
    position: absolute;
    inset: 0;
    z-index: 100000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    padding: 1rem;
    box-sizing: border-box;
}

.tablet-company-picker-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    max-width: 96%;
    border-radius: var(--tablet-box-radius, 12px);
    background: var(--tablet-shell-bg, linear-gradient(180deg, rgba(28, 28, 30, 0.96), rgba(14, 14, 16, 0.98)));
    border: 1px solid var(--tablet-box-border, rgba(255, 255, 255, 0.08));
    box-shadow: var(--tablet-box-shadow, 0 8px 32px rgba(0, 0, 0, 0.45));
}

.tablet-company-picker-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.tablet-company-picker-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.75rem;
    max-width: 100%;
}

.tablet-company-picker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 9rem;
    text-align: center;
    cursor: pointer;
}

.tablet-company-picker-card:hover .tablet-company-picker-avatar {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.tablet-company-picker-avatar {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.tablet-company-picker-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.25;
    word-break: break-word;
}

.tablet-company-picker-job {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.88;
    line-height: 1.2;
    word-break: break-word;
}

.detail-owner-box {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 12px;
    row-gap: 6px;
}

.detail-owner-box .area-right-panel-owner-image {
    grid-column: 1;
    grid-row: 1 / 3;
}

.detail-owner-box .area-right-panel-owner-name,
.detail-owner-box .area-right-panel-owner-job,
.detail-owner-box .area-right-panel-owner-clear {
    grid-column: 2;
}

.detail-shell-box,
.detail-polyzone-box,
.detail-mlo-shell-box,
.detail-world-billboard-box {
    min-height: 160px;
}

/* Admin final overrides must stay after global scaling rules. */
body.joblife-admin-open .bg {
    transform: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

.admin-menu-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(1580px, calc(100vw - 28px));
    height: min(930px, calc(100vh - 28px));
    margin: 0;
    transform: translate(-50%, -50%);
}

.admin-menu-wrapper[style*="display: block"],
.admin-menu-wrapper[style*="display:block"] {
    display: grid !important;
}

.admin-menu-live-badge {
    display: none !important;
}

.admin-menu-right-wrapper .world-config-mosaic {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.admin-menu-right-wrapper .order-items-item-rows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) {
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
}

.admin-menu-right-wrapper .tebex-admin-products {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.admin-menu-right-wrapper .world-config-coord-actions .world-config-coord-pick.btn,
.admin-menu-right-wrapper .order-items-npc-pick.btn,
.admin-menu-right-wrapper .order-items-admin-toolbar .btn,
.admin-menu-right-wrapper .job-lists-open-add-job-btn,
.admin-menu-right-wrapper .job-lists-btn-add,
.admin-menu-right-wrapper .order-items-job-chip,
.admin-menu-right-wrapper .tebex-type-badge,
.admin-menu-right-wrapper .vehicle-store-meta-pill {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
}

/* Admin page layout hard overrides */
.admin-menu-right-wrapper .job-lists-admin-body {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
    align-items: stretch !important;
    gap: 16px !important;
}

.admin-menu-right-wrapper .job-lists-admin-main,
.admin-menu-right-wrapper #jobListsAdminFooter.job-lists-admin-footer--rail {
    min-width: 0 !important;
}

.admin-menu-right-wrapper #jobListsAdminFooter.job-lists-admin-footer--rail {
    width: auto !important;
    max-width: none !important;
    padding: 14px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 14px !important;
    background: var(--dadmin-surface) !important;
}

.admin-menu-right-wrapper .world-config-mosaic {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: start !important;
}

.admin-menu-right-wrapper .world-config-tile--span-full {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .world-config-tile,
.admin-menu-right-wrapper .order-items-npc-admin,
.admin-menu-right-wrapper .tebex-product-card,
.admin-menu-right-wrapper .order-items-group-card,
.admin-menu-right-wrapper .vehicle-store-vehicle-card {
    padding: 16px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 14px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
}

.admin-menu-right-wrapper .world-config-fields-tight,
.admin-menu-right-wrapper .world-config-num-grid,
.admin-menu-right-wrapper .order-items-npc-compact-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.admin-menu-right-wrapper .world-config-num-grid--we,
.admin-menu-right-wrapper .world-config-auction-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.admin-menu-right-wrapper .world-config-coord-inputs,
.admin-menu-right-wrapper .world-config-coord-inputs--w,
.admin-menu-right-wrapper .order-items-npc-coord-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.admin-menu-right-wrapper .order-items-admin-scroll {
    gap: 16px !important;
}

.admin-menu-right-wrapper .order-items-group-card {
    padding: 0 !important;
}

.admin-menu-right-wrapper .order-items-group-head {
    padding: 14px 16px !important;
    background: rgba(255, 255, 255, 0.035) !important;
}

.admin-menu-right-wrapper .order-items-group-body {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 16px !important;
    border: 0 !important;
    background: transparent !important;
}

.admin-menu-right-wrapper .order-items-group-section {
    padding: 14px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
}

.admin-menu-right-wrapper .order-items-item-rows {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.admin-menu-right-wrapper .order-items-item-card {
    width: auto !important;
    flex: none !important;
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 12px !important;
    padding: 14px !important;
}

.admin-menu-right-wrapper .order-items-remove-item-btn {
    top: 8px !important;
    right: 8px !important;
}

.admin-menu-right-wrapper .order-items-item-preview {
    width: 74px !important;
    height: 74px !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .order-items-item-fields {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.admin-menu-right-wrapper .order-items-item-fields > .order-items-field:first-child,
.admin-menu-right-wrapper .order-items-field-row {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) .vehicle-store-vehicle-card {
    padding: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) .vehicle-store-vehicle-card .order-items-group-body {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 16px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) .vehicle-store-vehicle-card .order-items-item-card {
    grid-template-columns: 120px minmax(0, 1fr) !important;
    padding: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) .vehicle-store-vehicle-card .order-items-item-preview {
    width: 120px !important;
    min-height: 150px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) .vehicle-store-vehicle-card .order-items-item-fields {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles:not(.vehicle-store-vehicle-rows) .vehicle-store-vehicle-card .vehicle-store-stats-row {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.admin-menu-right-wrapper .tebex-admin-card {
    padding: 16px !important;
}

.admin-menu-right-wrapper .tebex-admin-products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.admin-menu-right-wrapper .tebex-product-meta {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.admin-menu-right-wrapper .world-config-mini-field,
.admin-menu-right-wrapper .tebex-field,
.admin-menu-right-wrapper .order-items-field,
.admin-menu-right-wrapper .job-lists-field {
    gap: 4px !important;
}

.admin-menu-right-wrapper .admin-field-desc {
    order: 1;
    margin: 0 0 2px !important;
    color: var(--dadmin-muted) !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
}

.admin-menu-right-wrapper .world-config-mini-field input,
.admin-menu-right-wrapper .world-config-mini-field select,
.admin-menu-right-wrapper .tebex-field input,
.admin-menu-right-wrapper .tebex-field select,
.admin-menu-right-wrapper .order-items-field input,
.admin-menu-right-wrapper .job-lists-field input {
    order: 2;
}

@media (max-width: 1280px) {
    .admin-menu-right-wrapper .job-lists-admin-body,
    .admin-menu-right-wrapper .world-config-mosaic,
    .admin-menu-right-wrapper .order-items-group-body,
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicle-card .order-items-group-body,
    .admin-menu-right-wrapper .tebex-admin-products,
    .admin-menu-right-wrapper .tebex-product-meta {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .world-config-num-grid--we,
    .admin-menu-right-wrapper .world-config-auction-fields,
    .admin-menu-right-wrapper .order-items-item-rows {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* World/Economy compact readable layout */
.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-mosaic {
    grid-template-columns: 1.15fr 0.85fr !important;
    grid-auto-flow: dense !important;
    gap: 12px !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile {
    padding: 10px !important;
    border-radius: 12px !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--setup {
    grid-row: span 2;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--small {
    min-height: 0;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--economy {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--sale,
.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--auction {
    grid-column: auto !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 26px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    font-size: 1.4vh !important;
    color: var(--dadmin-text);
    letter-spacing: 0.08em;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile-title i {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    flex: 0 0 23px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 8px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 12px;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile-body {
    gap: 6px !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-fields-tight,
.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-num-grid {
    gap: 7px !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--economy .world-config-num-grid--we {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--sale .world-config-num-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--auction .world-config-auction-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-coord-wrap {
    padding: 8px !important;
    margin-top: 2px !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-coord-inputs--w {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-mini-label {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    color: rgba(244, 244, 245, 0.78) !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .admin-field-desc {
    font-size: 9.5px !important;
    line-height: 1.28 !important;
    color: rgba(161, 161, 170, 0.9) !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .form-input--tight {
    min-height: 29px !important;
    padding: 5px 7px !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile-hint {
    margin: -2px 0 2px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-we-shopclose {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    column-gap: 9px !important;
    row-gap: 2px !important;
    margin-top: 5px !important;
    padding: 7px 9px !important;
    border: 1px solid var(--dadmin-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.admin-menu-right-wrapper .world-config-we-shopclose {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    column-gap: 9px !important;
    row-gap: 2px !important;
}

.admin-menu-right-wrapper .world-config-we-shopclose input[type="checkbox"] {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.admin-menu-right-wrapper .world-config-we-shopclose .admin-checkbox-label {
    grid-column: 2;
    grid-row: 1;
}

.admin-menu-right-wrapper .world-config-we-shopclose .admin-field-desc {
    grid-column: 2;
    grid-row: 2;
    margin: 0 !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-we-shopclose input[type="checkbox"] {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: start;
    width: 28px !important;
    height: 16px !important;
    margin: 0 !important;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    position: relative;
    cursor: pointer;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-we-shopclose input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e4e4e7;
    transition: transform 140ms ease, background 140ms ease;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-we-shopclose input[type="checkbox"]:checked {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-we-shopclose input[type="checkbox"]:checked::after {
    transform: translateX(12px);
    background: var(--dadmin-accent);
}

.admin-menu-right-wrapper .world-config-admin-wrapper .admin-checkbox-label {
    grid-column: 2;
    grid-row: 1;
    color: var(--dadmin-text);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-we-shopclose .admin-field-desc {
    grid-column: 2;
    grid-row: 2;
    margin: 0 !important;
}

@media (max-width: 1450px) {
    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--economy .world-config-num-grid--we {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1180px) {
    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-mosaic,
    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--economy .world-config-num-grid--we,
    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--auction .world-config-auction-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--setup,
    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--economy {
        grid-column: 1 / -1 !important;
        grid-row: auto;
    }
}

/* Dealership compact readable layout */
.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-mosaic {
    grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr) !important;
    gap: 12px !important;
    align-items: start !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dealership-config-tile {
    padding: 10px !important;
    border-radius: 12px !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dealership-config-tile--styles {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-tile-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 26px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    font-size: 1.4vh !important;
    color: var(--dadmin-text);
    letter-spacing: 0.08em;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-tile-title i {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    flex: 0 0 23px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 8px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 12px;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-tile-body {
    gap: 7px !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-num-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-mini-label,
.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-fee-field .world-config-mini-label {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    color: rgba(244, 244, 245, 0.78) !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .admin-field-desc {
    font-size: 9.5px !important;
    line-height: 1.28 !important;
    color: rgba(161, 161, 170, 0.9) !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .form-input--tight {
    min-height: 29px !important;
    padding: 5px 7px !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-toggles-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-we-shopclose {
    margin-top: 0 !important;
    padding: 7px 9px !important;
    border: 1px solid var(--dadmin-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-we-shopclose input[type="checkbox"],
.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-toggle input[type="checkbox"] {
    width: 28px !important;
    height: 16px !important;
    margin: 0 !important;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    position: relative;
    cursor: pointer;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-we-shopclose input[type="checkbox"]::after,
.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-toggle input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e4e4e7;
    transition: transform 140ms ease, background 140ms ease;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-we-shopclose input[type="checkbox"]:checked,
.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-toggle input[type="checkbox"]:checked {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-we-shopclose input[type="checkbox"]:checked::after,
.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-toggle input[type="checkbox"]:checked::after {
    transform: translateX(12px);
    background: var(--dadmin-accent);
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-rows {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-row {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 8px 10px !important;
    align-items: center !important;
    padding: 9px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-preview-box {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 112px !important;
    height: 58px !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-toggle {
    grid-column: 2;
    grid-row: 1;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-toggle span {
    color: var(--dadmin-text) !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
}

.admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-fee-field {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
}

@media (max-width: 1450px) {
    .admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-rows {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1180px) {
    .admin-menu-right-wrapper .dealership-admin-wrapper .world-config-mosaic,
    .admin-menu-right-wrapper .dealership-admin-wrapper .world-config-toggles-grid,
    .admin-menu-right-wrapper .dealership-admin-wrapper .dsl-plate-rows {
        grid-template-columns: 1fr !important;
    }
}

/* World/Dealership layout gap cleanup */
.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-mosaic,
.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-mosaic {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row dense !important;
    gap: 12px !important;
    align-items: stretch !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile,
.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-tile {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile-body,
.admin-menu-right-wrapper .dealership-admin-wrapper .world-config-tile-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--economy,
.admin-menu-right-wrapper .dealership-admin-wrapper .dealership-config-tile--styles {
    display: block !important;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--span-full {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile--setup {
    grid-row: auto !important;
}

@media (max-width: 1180px) {
    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-mosaic,
    .admin-menu-right-wrapper .dealership-admin-wrapper .world-config-mosaic {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .world-config-admin-wrapper .world-config-tile,
    .admin-menu-right-wrapper .dealership-admin-wrapper .world-config-tile {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
}

/* Upgrades compact readable layout */
.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-inner {
    gap: 12px !important;
    height: 100% !important;
    max-height: 100% !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-hero {
    flex: 0 0 auto !important;
    padding: 10px 12px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-title {
    font-size: 1.4vh !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-title i {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    margin: 0;
    flex: 0 0 23px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 8px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 12px;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-desc {
    margin-top: 5px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-card {
    padding: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 14px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-section-head {
    margin-bottom: 6px !important;
    flex: 0 0 auto !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-section-title {
    font-size: 1.4vh !important;
    color: var(--dadmin-text) !important;
    letter-spacing: 0.08em;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-table {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrades-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 9px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    height: auto !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrades-group-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 6px !important;
    padding: 0 0 6px !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
    color: var(--dadmin-text) !important;
    font-size: 1.25vh !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrades-group-title i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 7px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 11px;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrades-levels {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 0 8px !important;
    margin: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(62, 232, 154, 0.35) rgba(255, 255, 255, 0.06);
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrades-levels::-webkit-scrollbar {
    height: 6px;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrades-levels::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(62, 232, 154, 0.35);
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-card {
    flex: 0 0 176px !important;
    width: 176px !important;
    min-width: 176px !important;
    max-width: 176px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.2)) !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 6px 14px rgba(0, 0, 0, 0.18) !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    padding-bottom: 5px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-title {
    color: var(--dadmin-accent) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-field-label {
    color: rgba(244, 244, 245, 0.78) !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-field input {
    width: 100% !important;
    max-width: 100% !important;
    height: 27px !important;
    min-height: 27px !important;
    padding: 3px 6px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: #f4f4f5 !important;
    box-sizing: border-box !important;
    text-align: center;
    font-size: 12px !important;
    -moz-appearance: textfield;
    appearance: textfield;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-field input::-webkit-outer-spin-button,
.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-add {
    flex: 0 0 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: stretch !important;
    border: 1px dashed var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
    border-radius: 12px !important;
    font-size: 18px !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .upgrades-admin-footer {
    flex: 0 0 auto !important;
    margin-top: 0 !important;
}

.admin-menu-right-wrapper .upgrades-admin-wrapper .admin-upgrade-level-remove {
    width: 26px !important;
    min-width: 26px !important;
    height: 26px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    color: #fca5a5 !important;
    border-color: rgba(252, 165, 165, 0.24) !important;
    background: rgba(252, 165, 165, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Jobs compact readable layout */
.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-inner {
    gap: 12px !important;
    height: 100% !important;
    max-height: 100% !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-hero {
    flex: 0 0 auto !important;
    padding: 10px 12px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-title {
    font-size: 1.4vh !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-title i {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    margin: 0;
    flex: 0 0 23px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 8px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 12px;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-desc {
    margin-top: 5px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-badge-live {
    padding: 5px 10px !important;
    font-size: 9px !important;
    letter-spacing: 0.1em !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-pill {
    padding: 5px 10px !important;
    font-size: 11px !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: 100% !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-main {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-hint-card {
    flex: 0 0 auto !important;
    padding: 8px 10px !important;
    gap: 10px !important;
    border-radius: 12px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-left: 3px solid var(--dadmin-accent) !important;
    background:
        linear-gradient(
            90deg,
            rgba(74, 222, 128, 0.2) 0%,
            rgba(74, 222, 128, 0.1) 24%,
            rgba(74, 222, 128, 0.03) 48%,
            rgba(74, 222, 128, 0) 62%
        ),
        var(--dadmin-surface) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-hint-icon {
    font-size: 14px !important;
    color: var(--dadmin-accent) !important;
    margin-top: 1px !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-hint-title {
    font-size: 10px !important;
    margin-bottom: 3px !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-hint-body {
    font-size: 11px !important;
    line-height: 1.35 !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminSectionList.job-lists-admin-card--table {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 14px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-section-head {
    margin-bottom: 6px !important;
    flex: 0 0 auto !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-section-title {
    font-size: 1.4vh !important;
    color: var(--dadmin-text) !important;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-section-title i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 7px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 11px;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-open-add-job-btn {
    padding: 6px 12px !important;
    font-size: 11px !important;
    border-radius: 10px !important;
    background: var(--dadmin-accent-soft) !important;
    border: 1px solid var(--dadmin-accent-line) !important;
    color: var(--dadmin-accent) !important;
    letter-spacing: 0.08em !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable.job-lists-admin-table {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-lists-admin-table-head {
    padding: 6px 8px !important;
    font-size: 9px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-row {
    padding: 7px 8px !important;
    min-height: 0 !important;
    border-radius: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: none !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-row:hover {
    border-color: var(--dadmin-accent-line) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-row .job-list-admin-label,
.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-row .job-list-admin-key-input {
    min-height: 27px !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-label-readonly {
    padding: 4px 2px !important;
    font-size: 12px !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-badge {
    font-size: 9px !important;
    padding: 3px 7px !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-remove {
    min-height: 27px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper .job-lists-admin-callout {
    padding: 8px 10px !important;
    margin-bottom: 6px !important;
    font-size: 11px !important;
    border-radius: 10px !important;
    border-left: 3px solid var(--dadmin-accent-line) !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminFooter.job-lists-admin-footer--rail {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    margin: 0 !important;
    border: 1px solid var(--dadmin-line) !important;
    border-left: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminFooter.job-lists-admin-footer--rail .job-lists-admin-persist-hint {
    text-align: left !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
}

.admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminFooter.job-lists-admin-footer--rail .job-lists-btn-save {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 132px !important;
    margin: 0 !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
}

@media (max-width: 720px) {
    .admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminFooter.job-lists-admin-footer--rail {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminFooter.job-lists-admin-footer--rail .job-lists-btn-save {
        width: 100% !important;
    }

    .admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-lists-admin-table-head,
    .admin-menu-right-wrapper .job-lists-admin-wrapper #jobListsAdminTable .job-list-admin-row {
        grid-template-columns: minmax(80px, 1fr) minmax(90px, 1.4fr) auto minmax(72px, auto) !important;
        gap: 8px !important;
    }
}

/* Jobs add modal — dadmin compact */
.admin-menu-right-wrapper .job-lists-add-modal {
    z-index: 120 !important;
    padding: 14px !important;
}

.admin-menu-right-wrapper .job-lists-add-modal-backdrop {
    background: rgba(4, 8, 12, 0.78) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

.admin-menu-right-wrapper .job-lists-add-modal-panel {
    width: min(520px, 100%) !important;
    max-height: min(82vh, 520px) !important;
    padding: 12px 14px 14px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 14px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.admin-menu-right-wrapper .job-lists-add-modal-top {
    flex: 0 0 auto !important;
    align-items: center !important;
    margin-bottom: 6px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .job-lists-add-modal-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 1.35vh !important;
    letter-spacing: 0.08em !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .job-lists-add-modal-title i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 7px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 11px;
}

.admin-menu-right-wrapper .job-lists-add-modal-close {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--dadmin-muted-2) !important;
    font-size: 12px !important;
}

.admin-menu-right-wrapper .job-lists-add-modal-close:hover {
    background: rgba(252, 165, 165, 0.12) !important;
    border-color: rgba(252, 165, 165, 0.28) !important;
    color: #fca5a5 !important;
}

.admin-menu-right-wrapper .job-lists-add-modal-sub {
    flex: 0 0 auto !important;
    margin: 8px 0 10px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
    color: var(--dadmin-muted) !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-admin-add--fields {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
    align-items: end !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-field {
    flex: none !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-field--btn {
    grid-column: 1 / -1 !important;
    align-self: stretch !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-field-label {
    margin: 0 !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-field-label--ghost {
    display: none !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-list-new-key-input,
.admin-menu-right-wrapper #jobListsAddModal .job-list-new-label-input {
    min-height: 30px !important;
    padding: 5px 9px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-list-new-key-input:focus,
.admin-menu-right-wrapper #jobListsAddModal .job-list-new-label-input:focus {
    border-color: var(--dadmin-accent-line) !important;
    box-shadow: 0 0 0 2px rgba(62, 232, 154, 0.12) !important;
}

.admin-menu-right-wrapper #jobListsAddModal .form-input.job-list-new-key-input {
    width: 100% !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-field--btn .job-lists-btn-add {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 34px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, #3ee89a, #1fa855) !important;
    border: 1px solid rgba(130, 235, 180, 0.55) !important;
    color: #fff !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-kbd-hint {
    flex: 0 0 auto !important;
    margin: 10px 0 0 !important;
    padding-top: 8px !important;
    border-top: 1px solid var(--dadmin-line) !important;
    font-size: 10px !important;
    color: var(--dadmin-muted) !important;
}

.admin-menu-right-wrapper #jobListsAddModal .job-lists-kbd-hint kbd {
    padding: 2px 6px !important;
    font-size: 10px !important;
    border-radius: 5px !important;
    border-color: var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--dadmin-muted-2) !important;
}

@media (max-width: 560px) {
    .admin-menu-right-wrapper #jobListsAddModal .job-lists-admin-add--fields {
        grid-template-columns: 1fr !important;
    }
}

/* Area list cards — clear grid + readable overlay */
.admin-menu-right-wrapper .area-left-panel-areas {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)) !important;
    gap: 12px !important;
    align-content: start !important;
    padding: 4px 2px 10px 0 !important;
}

.admin-menu-right-wrapper .area-left-panel-area-box {
    float: none !important;
    width: auto !important;
    height: auto !important;
    min-height: 296px !important;
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24) !important;
}

.admin-menu-right-wrapper .area-left-panel-area-boximg {
    height: 128px !important;
    min-height: 128px !important;
    flex: 0 0 128px !important;
    border-radius: 10px !important;
}

.admin-menu-right-wrapper .area-left-panel-area-boximg-overlay {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 10px 12px !important;
    border-radius: 0 0 10px 10px !important;
}

.admin-menu-right-wrapper .area-left-panel-area-boxheader-label {
    color: rgba(255, 255, 255, 0.72) !important;
}

.admin-menu-right-wrapper .area-left-panel-area-boxheader-value {
    color: #f4f4f5 !important;
    font-size: 13px !important;
}

.admin-menu-right-wrapper .area-left-panel-area-boxlabel {
    color: rgba(255, 255, 255, 0.68) !important;
}

.admin-menu-right-wrapper .area-left-panel-area-box-usability-header {
    color: var(--dadmin-muted-2) !important;
    font-size: 10px !important;
    margin-bottom: 5px !important;
}

.admin-menu-right-wrapper .area-left-panel-area-box-usability-types {
    border-color: rgba(124, 109, 246, 0.32) !important;
    background: rgba(0, 0, 0, 0.18) !important;
}

.admin-menu-right-wrapper .area-left-panel-area-footer {
    margin-top: auto !important;
    align-items: stretch !important;
}

.admin-menu-right-wrapper .area-left-panel-rent-price-box {
    min-height: 38px !important;
    border-radius: 8px !important;
    background: rgba(74, 222, 128, 0.14) !important;
    border: 1px solid rgba(74, 222, 128, 0.28) !important;
}

.admin-menu-right-wrapper .area-left-panel-rent-price-icon {
    background: var(--dadmin-accent) !important;
    color: #052e16 !important;
}

.admin-menu-right-wrapper .area-left-panel-area-button,
.admin-menu-right-wrapper .area-left-panel-area-teleport-button {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.admin-menu-right-wrapper .area-left-panel-area-status {
    font-size: 10px !important;
    border: 1px solid rgba(248, 113, 113, 0.35) !important;
    background: rgba(127, 29, 29, 0.72) !important;
}

.admin-menu-right-wrapper .area-left-panel-area-status-stack {
    top: 8px !important;
    right: 8px !important;
    gap: 5px !important;
}

.admin-menu-right-wrapper .area-left-panel-toolbar {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
}

.admin-menu-right-wrapper .area-left-panel-search-input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    height: 40px !important;
    border-color: var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.admin-menu-right-wrapper .area-left-panel-createbutton {
    position: static !important;
    right: auto !important;
    top: auto !important;
    max-width: none !important;
    height: 40px !important;
    padding: 0 14px !important;
    filter: none !important;
}

@media (max-width: 720px) {
    .admin-menu-right-wrapper .area-left-panel-toolbar {
        flex-wrap: wrap !important;
    }

    .admin-menu-right-wrapper .area-left-panel-createbutton {
        width: 100% !important;
    }
}

@media (max-width: 1280px) {
    .admin-menu-right-wrapper .area-left-panel-areas {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    }
}

@media (max-width: 1024px) {
    .area-left-panel-area-box {
        width: auto !important;
        height: auto !important;
    }
}

/* Area Creator — dadmin compact layout */
.admin-menu-right-wrapper .area-creator-wrapper {
    align-items: stretch !important;
    gap: 14px !important;
    min-height: 0 !important;
    height: 100% !important;
}

.admin-menu-right-wrapper .area-right-panel-wrapper {
    flex-direction: column !important;
    position: relative !important;
    inset: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
    backdrop-filter: none !important;
}

.admin-menu-right-wrapper .area-right-panel-topbar {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .area-right-panel-create-section-return {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--dadmin-muted-2) !important;
    font-size: 13px !important;
    opacity: 1 !important;
}

.admin-menu-right-wrapper .area-right-panel-create-section-return:hover {
    border-color: var(--dadmin-accent-line) !important;
    color: var(--dadmin-accent) !important;
    background: var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .area-right-panel-create-section-return i {
    font-size: 13px !important;
    line-height: 1 !important;
    pointer-events: none;
}

.admin-menu-right-wrapper .area-creator-panel-header {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
    font-size: 1.35vh !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
}

.admin-menu-right-wrapper .area-creator-panel-header i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 7px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 11px;
}

.admin-menu-right-wrapper .area-right-panel-create-section,
.admin-menu-right-wrapper .area-right-panel-details {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    gap: 10px !important;
    flex-direction: column !important;
}

.admin-menu-right-wrapper .area-right-panel-create-hero {
    flex: 0 0 auto !important;
    display: grid !important;
    grid-template-columns: 140px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: center !important;
    padding: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .area-right-panel-create-section-areaimg {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: 0 !important;
    max-height: 88px !important;
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    border-radius: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box--full > .usability-boxes {
    max-height: 72px !important;
    overflow-y: auto !important;
}

.admin-menu-right-wrapper .area-world-billboard-box .world-billboard-fields:not(:visible),
.admin-menu-right-wrapper .detail-world-billboard-box .world-billboard-fields[style*="display: none"] {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

.admin-menu-right-wrapper .area-right-panel-create-section-areaimg-input {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: 38px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--dadmin-text) !important;
    text-align: left !important;
}

.admin-menu-right-wrapper .area-right-panel-create-section-input-wrapper,
.admin-menu-right-wrapper .area-right-panel-details-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: min-content !important;
    gap: 10px !important;
    align-items: stretch !important;
    align-content: start !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 0 2px 8px 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .area-right-panel-create-section-input-wrapper > .area-right-panel-section-input-box,
.admin-menu-right-wrapper .area-right-panel-details-grid > .details-group,
.admin-menu-right-wrapper .area-right-panel-details-grid > .area-right-panel-detail-box {
    min-height: min-content !important;
    align-self: stretch !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box):not(.area-right-panel-detail-box) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-auto-flow: row !important;
    align-items: center !important;
    gap: 6px 8px !important;
    padding: 10px !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: min-content !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .area-right-panel-detail-box:not(.detail-world-billboard-box):not(.detail-owner-box) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    padding: 10px !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: min-content !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box--full {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-auto-flow: row !important;
    align-items: center !important;
    gap: 6px 8px !important;
    padding: 10px !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: min-content !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box--full,
.admin-menu-right-wrapper .area-right-panel-section-input-box.area-world-billboard-box,
.admin-menu-right-wrapper .area-right-panel-detail-box.area-right-panel-detail-box-history {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box):not(.area-right-panel-detail-box) .area-right-panel-section-input-header,
.admin-menu-right-wrapper .area-right-panel-section-input-box--full .area-right-panel-section-input-header {
    grid-column: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--dadmin-muted-2) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.admin-menu-right-wrapper .area-right-panel-detail-box.area-right-panel-section-input-box .area-right-panel-detail-box-header {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: left !important;
}

.admin-menu-right-wrapper .area-right-panel-detail-box .area-right-panel-detail-box-header i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    flex: 0 0 20px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 6px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 10px;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .area-right-panel-section-input-label,
.admin-menu-right-wrapper .area-right-panel-section-input-box--full > .area-right-panel-section-input-label {
    grid-column: 2 !important;
    justify-self: end !important;
    margin: 0 !important;
    align-self: center !important;
    opacity: 1 !important;
    float: none !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .input-box-place,
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > select.input-box-place,
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box):not(.area-right-panel-section-input-box--full) > label,
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .area-creator-mlo-check-label,
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .area-creator-mlo-shell-wrap,
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .input-boxes,
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .area-placement-warning,
.admin-menu-right-wrapper .area-right-panel-section-input-box--full > .usability-boxes,
.admin-menu-right-wrapper .area-right-panel-section-input-box > .usability-boxes,
.admin-menu-right-wrapper .area-right-panel-section-input-box > .area-placement-warning {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .area-right-panel-detail-box > .detail-box-input,
.admin-menu-right-wrapper .area-right-panel-detail-box > select,
.admin-menu-right-wrapper .area-right-panel-detail-box > textarea,
.admin-menu-right-wrapper .area-right-panel-detail-box > .input-boxes,
.admin-menu-right-wrapper .area-right-panel-detail-box > .area-placement-warning,
.admin-menu-right-wrapper .area-right-panel-detail-box > .area-right-panel-detail-box-label,
.admin-menu-right-wrapper .area-right-panel-detail-box > .area-right-panel-detail-usabilitys {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box > .usability-boxes {
    margin-top: 0 !important;
    max-height: 108px !important;
    overflow-y: auto !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box):not(.area-right-panel-section-input-box--full) > label,
.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .area-creator-mlo-check-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box:not(.area-world-billboard-box) > .input-boxes,
.admin-menu-right-wrapper .area-right-panel-detail-box > .input-boxes {
    min-height: 32px !important;
    padding: 7px 10px !important;
    border-radius: 8px !important;
    border: 1px dashed var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    transform: none !important;
    filter: none !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box > .area-placement-warning {
    font-size: 10px !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box .input-box-place,
.admin-menu-right-wrapper .area-right-panel-detail-box .detail-box-input,
.admin-menu-right-wrapper .area-right-panel-detail-box select {
    min-height: 32px !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--dadmin-text) !important;
    font-size: 12px !important;
    margin-top: 0 !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box > .input-boxes:hover,
.admin-menu-right-wrapper .area-right-panel-detail-box > .input-boxes:hover {
    transform: none !important;
    scale: 1 !important;
    filter: none !important;
    border-color: var(--dadmin-accent) !important;
    background: rgba(74, 222, 128, 0.18) !important;
    cursor: pointer;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box .usability-boxes {
    margin-top: 0 !important;
    gap: 6px !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box .input-box,
.admin-menu-right-wrapper .area-right-panel-detail-usability-type {
    padding: 5px 9px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(124, 109, 246, 0.35) !important;
    background: rgba(124, 109, 246, 0.12) !important;
    color: #d1ccff !important;
    font-size: 11px !important;
    transform: none !important;
    filter: none !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box .input-box-selected,
.admin-menu-right-wrapper .area-right-panel-detail-usability-type.is-active {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
    filter: none !important;
}

.admin-menu-right-wrapper .area-right-panel-create-footer {
    flex: 0 0 auto !important;
    margin-top: auto !important;
    padding-top: 8px !important;
    border-top: 1px solid var(--dadmin-line) !important;
    gap: 10px !important;
}

.admin-menu-right-wrapper .area-right-panel-detail-buttons {
    flex: 0 0 auto !important;
    margin-top: 0 !important;
    padding-top: 8px !important;
    border-top: 1px solid var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .area-right-panel-create-footer .create-section-box {
    min-height: 38px !important;
    padding: 8px 14px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    transform: none !important;
    filter: none !important;
}

.admin-menu-right-wrapper .create-section-confirm {
    background: linear-gradient(180deg, #3ee89a, #1fa855) !important;
    border: 1px solid rgba(130, 235, 180, 0.55) !important;
    color: #fff !important;
}

.admin-menu-right-wrapper .create-section-decline {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--dadmin-line) !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .create-section-confirm:hover,
.admin-menu-right-wrapper .create-section-decline:hover {
    scale: 1 !important;
    filter: brightness(1.06) !important;
}

.admin-menu-right-wrapper .area-right-panel-details-scroll {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .area-right-panel-details-return {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: fit-content !important;
    margin: 0 0 10px !important;
    padding: 7px 12px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--dadmin-muted-2) !important;
    font-size: 11px !important;
    transform: none !important;
}

.admin-menu-right-wrapper .area-right-panel-details-return:hover {
    scale: 1 !important;
    border-color: var(--dadmin-accent-line) !important;
    color: var(--dadmin-accent) !important;
    background: var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .area-right-panel-details-grid > .details-group-identity,
.admin-menu-right-wrapper .area-right-panel-details-grid > .details-group-finance {
    display: contents !important;
}

.admin-menu-right-wrapper .area-right-panel-details-grid > .details-group:not(.details-group-identity):not(.details-group-finance) {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 10px !important;
    align-items: stretch !important;
    align-content: start !important;
    width: 100% !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .area-right-panel-details-grid .detail-owner-box {
    grid-column: 1 / -1 !important;
    order: -1 !important;
    min-height: 120px !important;
    padding: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
}

.admin-menu-right-wrapper .area-right-panel-details-grid .detail-case-box {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .area-right-panel-details .details-group-identity > .area-right-panel-detail-box:not(.detail-owner-box),
.admin-menu-right-wrapper .area-right-panel-details .details-group-finance > .area-right-panel-detail-box:not(.detail-case-box) {
    align-self: stretch !important;
    min-height: min-content !important;
    overflow: visible !important;
}

.admin-menu-right-wrapper .area-right-panel-details .details-group-structure + .area-right-panel-detail-box-history {
    margin-top: 0 !important;
}

.admin-menu-right-wrapper .area-world-billboard-box .create-world-billboard-header-row .create-world-billboard-title,
.admin-menu-right-wrapper .area-world-billboard-box .area-right-panel-section-input-header,
.admin-menu-right-wrapper .detail-world-billboard-box .area-right-panel-section-input-header,
.admin-menu-right-wrapper .detail-world-billboard-box .area-right-panel-detail-box-header {
    grid-column: unset !important;
    grid-row: unset !important;
    order: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--dadmin-muted-2) !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.admin-menu-right-wrapper .area-world-billboard-box,
.admin-menu-right-wrapper .detail-world-billboard-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    max-width: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .area-world-billboard-box > input[type="hidden"],
.admin-menu-right-wrapper .detail-world-billboard-box > input[type="hidden"] {
    display: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.admin-menu-right-wrapper .area-world-billboard-box .create-world-billboard-header-row,
.admin-menu-right-wrapper .detail-world-billboard-box .detail-world-billboard-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .area-world-billboard-box .world-billboard-enable-row,
.admin-menu-right-wrapper .detail-world-billboard-box .world-billboard-enable-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    font-size: 11px !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .area-world-billboard-box .world-billboard-fields,
.admin-menu-right-wrapper .detail-world-billboard-box .world-billboard-fields {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .area-right-panel-section-input-box--mlo {
    height: auto !important;
    min-height: min-content !important;
}

.admin-menu-right-wrapper .area-creator-mlo-shell-wrap,
.admin-menu-right-wrapper .area-detail-mlo-shell-wrap {
    display: none !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .area-creator-mlo-shell-wrap.is-open,
.admin-menu-right-wrapper .area-detail-mlo-shell-wrap.is-open {
    display: flex !important;
}

.admin-menu-right-wrapper .area-creator-mlo-shell-label {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--dadmin-muted-2) !important;
    text-align: left !important;
    opacity: 1 !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
}

.admin-menu-right-wrapper .detail-mlo-shell-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.035) !important;
}

.admin-menu-right-wrapper .detail-mlo-shell-box .area-detail-mlo-check-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    font-size: 11px !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper select,
.admin-menu-right-wrapper .admin-themed-select {
    color-scheme: dark !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 30px !important;
}

.admin-menu-right-wrapper select option,
.admin-menu-right-wrapper select optgroup {
    background-color: #18181b !important;
    color: #f4f4f5 !important;
}

.admin-menu-right-wrapper select option:checked {
    background-color: #14532d !important;
    color: #4ade80 !important;
}

.admin-menu-right-wrapper .area-creator-mlo-check-label input[type="checkbox"],
.admin-menu-right-wrapper .area-detail-mlo-check-label input[type="checkbox"],
.admin-menu-right-wrapper .world-billboard-enable-row input[type="checkbox"],
.admin-menu-right-wrapper .world-billboard-check input[type="checkbox"],
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip input[type="checkbox"],
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip input[type="checkbox"],
.admin-menu-right-wrapper .route-creator-wrapper input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    margin: 0 !important;
    flex: 0 0 16px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 4px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    position: relative !important;
    cursor: pointer !important;
    display: inline-grid !important;
    place-items: center !important;
}

.admin-menu-right-wrapper .area-creator-mlo-check-label input[type="checkbox"]:checked,
.admin-menu-right-wrapper .area-detail-mlo-check-label input[type="checkbox"]:checked,
.admin-menu-right-wrapper .world-billboard-enable-row input[type="checkbox"]:checked,
.admin-menu-right-wrapper .world-billboard-check input[type="checkbox"]:checked,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip input[type="checkbox"]:checked,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip input[type="checkbox"]:checked,
.admin-menu-right-wrapper .route-creator-wrapper input[type="checkbox"]:checked {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .area-creator-mlo-check-label input[type="checkbox"]:checked::after,
.admin-menu-right-wrapper .area-detail-mlo-check-label input[type="checkbox"]:checked::after,
.admin-menu-right-wrapper .world-billboard-enable-row input[type="checkbox"]:checked::after,
.admin-menu-right-wrapper .world-billboard-check input[type="checkbox"]:checked::after,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip input[type="checkbox"]:checked::after,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip input[type="checkbox"]:checked::after,
.admin-menu-right-wrapper .route-creator-wrapper input[type="checkbox"]:checked::after {
    content: "" !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 2px !important;
    background: var(--dadmin-accent) !important;
}

.admin-menu-right-wrapper .world-billboard-check {
    grid-column: 1 / -1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    font-size: 11px !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .world-billboard-actions-row {
    grid-column: 1 / -1 !important;
}

@media (max-width: 1180px) {
    .admin-menu-right-wrapper .area-right-panel-create-section-input-wrapper,
    .admin-menu-right-wrapper .area-right-panel-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .admin-menu-right-wrapper .area-world-billboard-box .world-billboard-fields,
    .admin-menu-right-wrapper .detail-world-billboard-box .world-billboard-fields {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .area-right-panel-create-hero {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .area-right-panel-create-section-input-wrapper,
    .admin-menu-right-wrapper .area-right-panel-details-grid {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .area-right-panel-detail-box.detail-owner-box {
        grid-column: 1 / -1 !important;
    }
}

/* Order Items - minimal compact layout */
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 2px 4px 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .job-lists-admin-hero {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .job-lists-admin-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 4px !important;
    font-size: 1.45vh !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .job-lists-admin-title i,
.admin-menu-right-wrapper .order-items-admin-wrapper .job-lists-section-title i {
    width: 22px !important;
    height: 22px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 22px !important;
    border: 1px solid var(--dadmin-accent-line) !important;
    border-radius: 7px !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
    font-size: 11px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .job-lists-admin-desc {
    max-width: 820px !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    color: var(--dadmin-muted) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-main {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 2px 8px 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-groups-section,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .order-items-npc-admin,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicles-section,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-footer {
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: none !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin {
    flex: 0 0 auto !important;
    padding: 10px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin .world-config-tile-title {
    margin: 0 0 8px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-compact-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coords {
    margin-top: 8px !important;
    padding: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.025) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coord-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-body.job-lists-admin-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-main.job-lists-admin-main {
    width: 100% !important;
    min-width: 0 !important;
    align-self: stretch !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-groups-section.job-lists-admin-card,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicles-section.job-lists-admin-card {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
    padding: 8px !important;
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-split {
    display: grid !important;
    grid-template-columns: 188px minmax(0, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    min-width: 0 !important;
    height: 100% !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 8px !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-head .job-lists-section-title {
    margin: 0 !important;
    font-size: 10px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-head .order-items-admin-add-group-btn {
    min-width: 30px !important;
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 6px !important;
    overflow-y: auto !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 26px !important;
    gap: 2px !important;
    align-items: stretch !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 7px 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: var(--dadmin-text) !important;
    text-align: left !important;
    cursor: pointer !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-row.is-active .order-items-group-nav-item {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-title {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-meta {
    font-size: 9px !important;
    color: var(--dadmin-muted) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-nav-row .order-items-remove-group-btn {
    min-width: 26px !important;
    width: 26px !important;
    height: auto !important;
    padding: 0 !important;
    align-self: stretch !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-detail {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-detail-empty {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 16px !important;
    color: var(--dadmin-muted) !important;
    font-size: 11px !important;
    text-align: center !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-detail-empty.hidden {
    display: none !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-groups-section {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicles-section {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .job-lists-section-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin: 0 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .job-lists-section-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    font-size: 1.2vh !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper #orderItemsAdminGroups,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper #vehicleStoreAdminVehicles {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-card,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicle-card.order-items-group-card {
    display: none !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-card.is-active,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicle-card.order-items-group-card.is-active {
    display: flex !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-detail-head {
    flex: 0 0 auto !important;
    padding: 8px 10px !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-detail-title {
    margin: 0 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-section {
    padding: 8px 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-section--jobs {
    flex: 0 0 auto !important;
    padding: 8px 10px 6px !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
    max-height: none !important;
    overflow: visible !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-section--catalog {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 8px 10px 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-section-label {
    margin: 0 0 6px !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-section-body--catalog {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-list-head {
    display: none !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-rows {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(142px, 1fr)) !important;
    gap: 8px !important;
    align-content: start !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 2px 2px 6px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    width: 100% !important;
    min-height: 156px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px 6px 6px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    transition: border-color 0.15s ease, background 0.15s ease !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-card:hover {
    border-color: var(--dadmin-accent-line) !important;
    background: rgba(255, 255, 255, 0.045) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-preview-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    flex: 0 0 auto !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-micro-label {
    display: block !important;
    margin: 0 !important;
    padding: 0 1px !important;
    font-size: 7px !important;
    font-weight: 800 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    color: var(--dadmin-muted-2) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-preview {
    align-self: center !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    flex-shrink: 0 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-preview.is-empty {
    background-image: none !important;
    opacity: 0.55 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    overflow: visible !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-field-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    gap: 4px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-card .order-items-field {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2px !important;
    line-height: 1 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-card .order-items-field-label,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-card .admin-field-desc {
    display: none !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-card .form-input--tight {
    min-height: 17px !important;
    height: 17px !important;
    margin: 0 !important;
    padding: 0 4px !important;
    font-size: 9px !important;
    line-height: 17px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-ii-name {
    font-weight: 600 !important;
    text-align: center !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-ii-price {
    text-align: center !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chips {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
    flex: 0 1 auto !important;
    min-height: 26px !important;
    padding: 4px 8px !important;
    margin: 0 !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    color: var(--dadmin-text) !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip--orphan {
    border-color: rgba(255, 196, 120, 0.45) !important;
    background: rgba(40, 24, 6, 0.35) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip-warn-wrap,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip-warn-wrap {
    position: relative !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    overflow: visible !important;
    z-index: 2 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip-warn,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip-warn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    color: #ffb36b !important;
    cursor: help !important;
    flex-shrink: 0 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip--orphan,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip--orphan {
    overflow: visible !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip-orphan-tip.tooltip-content,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip-orphan-tip.tooltip-content {
    display: none !important;
    position: absolute !important;
    z-index: 300001 !important;
    left: calc(100% + 8px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: max-content !important;
    max-width: 260px !important;
    padding: 8px 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 8px !important;
    background: rgba(12, 12, 14, 0.98) !important;
    color: var(--dadmin-text) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    white-space: normal !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42) !important;
    pointer-events: none !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip-orphan-tip.tooltip-content::before,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-job-chip-orphan-tip.tooltip-content::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: -5px !important;
    transform: translateY(-50%) !important;
    border-width: 5px 5px 5px 0 !important;
    border-style: solid !important;
    border-color: transparent rgba(12, 12, 14, 0.98) transparent transparent !important;
}

.order-items-job-chip-orphan-tip.tooltip-content:not(.is-visible) {
    display: none !important;
}

.order-items-job-chip-orphan-tip.tooltip-content.is-visible {
    display: block !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip:has(input:checked) {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-job-chip-key {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    max-width: 120px !important;
    color: inherit !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-remove-item-btn,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-remove-group-btn,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles .order-items-remove-item-btn {
    margin: 0 !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--dadmin-muted-2) !important;
    box-shadow: none !important;
    transform: none !important;
    filter: none !important;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-remove-item-btn:hover,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-remove-group-btn:hover,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles .order-items-remove-item-btn:hover {
    border-color: rgba(255, 95, 95, 0.75) !important;
    background: rgba(210, 45, 45, 0.28) !important;
    color: #ffb4b4 !important;
    box-shadow: 0 0 0 1px rgba(255, 95, 95, 0.35) !important;
    transform: none !important;
    filter: none !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-remove-item-btn,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles .order-items-remove-item-btn {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    grid-column: auto !important;
    justify-self: auto !important;
    padding: 0 !important;
    min-width: 20px !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 9px !important;
    border-radius: 6px !important;
    opacity: 0.65 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-card:hover .order-items-remove-item-btn,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles .vehicle-store-vehicle-card:hover .order-items-remove-item-btn {
    opacity: 1 !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-group-actions {
    flex: 0 0 auto !important;
    padding: 6px 10px 8px !important;
    border-top: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-add-item-btn,
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-add-group-btn {
    padding: 6px 10px !important;
    font-size: 10px !important;
    border-radius: 8px !important;
    border: 1px solid var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-footer.job-lists-admin-footer--rail {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 9px 10px !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-footer .job-lists-admin-persist-hint {
    flex: 1 1 auto !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    color: var(--dadmin-muted) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-footer .order-items-admin-save {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 120px !important;
    margin: 0 !important;
    padding: 7px 14px !important;
    font-size: 11px !important;
    background: linear-gradient(180deg, #3ee89a, #1fa855) !important;
    border: 1px solid rgba(130, 235, 180, 0.55) !important;
    color: #fff !important;
}

@media (max-width: 1180px) {
    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-compact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-split {
        grid-template-columns: 170px minmax(0, 1fr) !important;
    }
}

@media (max-width: 720px) {
    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-split {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-groups-section.job-lists-admin-card,
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicles-section.job-lists-admin-card {
        height: 580px !important;
        min-height: 580px !important;
        max-height: 580px !important;
    }

    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-item-rows {
        grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)) !important;
    }

    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-compact-grid,
    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coord-grid {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-footer.job-lists-admin-footer--rail {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-admin-footer .order-items-admin-save {
        width: 100% !important;
    }
}

/* Vehicle Store — detail panel (minimal, matches Order Items) */
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicle-card {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    filter: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-vehicle-card:hover {
    border-color: transparent !important;
    background: transparent !important;
    transform: none !important;
    filter: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-preview-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-item-preview {
    width: 72px !important;
    height: 72px !important;
    border-radius: 10px !important;
    border: 1px solid var(--dadmin-line) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-field--name,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-field--img {
    grid-column: 1 / -1 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-grid .order-items-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-grid .order-items-field-label,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-grid .admin-field-desc {
    display: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-grid .form-input--tight,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-stats-row .form-input--tight {
    min-height: 24px !important;
    height: 24px !important;
    padding: 2px 6px !important;
    font-size: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-stats-row {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
    padding: 6px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-stats-row .order-items-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-section .order-items-group-section-body {
    overflow-y: auto !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
}

@media (max-width: 1180px) {
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .vehicle-store-admin-wrapper.order-items-admin-wrapper .vehicle-store-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Vehicle Store — standalone shell (jobs left, vehicle grid right) */
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-admin-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 2px 4px 0 !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .job-lists-admin-hero {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .job-lists-admin-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 4px !important;
    font-size: 1.45vh !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .job-lists-admin-title i,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .job-lists-section-title i {
    width: 22px !important;
    height: 22px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 22px !important;
    border: 1px solid var(--dadmin-accent-line) !important;
    border-radius: 7px !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
    font-size: 11px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .job-lists-admin-desc {
    max-width: 820px !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    color: var(--dadmin-muted) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-admin-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-admin-main {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 2px 8px 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-section,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-admin-footer {
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin {
    flex: 0 0 auto !important;
    padding: 10px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-section.job-lists-admin-card {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
    padding: 8px !important;
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-split {
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    min-width: 0 !important;
    height: 100% !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-nav {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 4 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-nav .vehicle-store-nav-head,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-nav .order-items-group-nav-head,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    min-height: 40px !important;
    padding: 8px !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-nav .vehicle-store-nav-head .job-lists-section-title,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-nav .order-items-group-nav-head .job-lists-section-title,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-head .job-lists-section-title {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    color: var(--dadmin-text) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 6px !important;
    overflow-y: auto !important;
    overflow-x: visible !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-panel .order-items-job-chips {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 4px !important;
    width: 100% !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-panel .order-items-job-chip {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    min-height: 28px !important;
    padding: 4px 8px !important;
    margin: 0 !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    color: var(--dadmin-text) !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-panel .order-items-job-chip:hover {
    border-color: var(--dadmin-accent-line) !important;
    background: rgba(255, 255, 255, 0.045) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-panel .order-items-job-chip:has(input:checked) {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-panel .order-items-job-chip-key {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    color: inherit !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-panel .order-items-job-chip--orphan {
    border-color: rgba(255, 196, 120, 0.45) !important;
    background: rgba(40, 24, 6, 0.28) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-job-empty {
    margin: 0 !important;
    padding: 8px 4px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
    color: var(--dadmin-muted) !important;
    text-align: center !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-panel {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-panel > #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-head .order-items-admin-add-group-btn {
    min-width: 30px !important;
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-detail-empty,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-group-detail-empty {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 16px !important;
    color: var(--dadmin-muted) !important;
    font-size: 11px !important;
    text-align: center !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-detail-empty.hidden,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-group-detail-empty.hidden {
    display: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    grid-auto-flow: row !important;
    align-content: start !important;
    align-items: start !important;
    justify-items: stretch !important;
    column-gap: 12px !important;
    row-gap: 18px !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 10px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    position: relative !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows > .vehicle-store-vehicle-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 188px !important;
    height: auto !important;
    margin: 14px 0 0 0 !important;
    padding: 10px 6px 6px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: start !important;
    transition: border-color 0.15s ease, background 0.15s ease !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows > .vehicle-store-vehicle-card.is-active {
    border-color: var(--dadmin-accent-line) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows > .vehicle-store-vehicle-card:hover {
    border-color: var(--dadmin-accent-line) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    transform: none !important;
    filter: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-tile-preview-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    flex: 0 0 auto !important;
    width: 100% !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-tile-preview,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-tile-preview.is-empty {
    display: block !important;
    width: 56px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    flex: 0 0 56px !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    aspect-ratio: 1 / 1 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-tile-preview.is-empty {
    background-image: none !important;
    opacity: 0.55 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-tile-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    grid-template-columns: none !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-tile-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    gap: 4px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-vehicle-card .order-items-field {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 2px !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-vehicle-card .order-items-item-micro-label {
    display: block !important;
    margin: 0 !important;
    padding: 0 1px !important;
    font-size: 7px !important;
    font-weight: 800 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-vehicle-card .form-input--tight {
    min-height: 17px !important;
    height: 17px !important;
    margin: 0 !important;
    padding: 0 4px !important;
    font-size: 9px !important;
    line-height: 17px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-stats-row {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 2px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 3px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows .vehicle-store-stats-row .form-input--tight {
    min-height: 15px !important;
    height: 15px !important;
    padding: 0 2px !important;
    font-size: 8px !important;
    line-height: 15px !important;
}

.admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-admin-footer.job-lists-admin-footer--rail {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 9px 10px !important;
    box-sizing: border-box !important;
}

@media (max-width: 720px) {
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-split {
        grid-template-columns: 1fr !important;
    }

    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-vehicles-section.job-lists-admin-card {
        height: 580px !important;
        min-height: 580px !important;
        max-height: 580px !important;
    }

    .admin-menu-right-wrapper .vehicle-store-admin-wrapper #vehicleStoreAdminVehicles.vehicle-store-vehicle-rows {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    }

    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .vehicle-store-admin-footer.job-lists-admin-footer--rail {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* Tebex — compact product grid (#tebexAdminProducts only) */
.admin-menu-right-wrapper .tebex-admin-wrapper .tebex-admin-card {
    padding: 8px !important;
    gap: 6px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper .tebex-section-head {
    margin-bottom: 0 !important;
    padding: 0 2px 4px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper .tebex-section-head .upgrades-section-title {
    margin: 0 !important;
    font-size: 11px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper .tebex-section-head .job-lists-btn-add {
    padding: 4px 8px !important;
    font-size: 10px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts.tebex-admin-products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, 240px) !important;
    justify-content: start !important;
    gap: 8px !important;
    align-content: start !important;
    align-items: stretch !important;
    padding: 4px 2px 6px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-product-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 240px !important;
    max-width: 240px !important;
    min-width: 240px !important;
    height: 270px !important;
    min-height: 270px !important;
    max-height: 270px !important;
    padding: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-card-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    min-height: 22px !important;
    padding-bottom: 4px !important;
    margin: 0 !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-type-badge {
    padding: 2px 6px !important;
    font-size: 8px !important;
    line-height: 1.2 !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-product-remove {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    padding: 0 !important;
    font-size: 9px !important;
    border-radius: 6px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-card-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-product-meta {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 5px !important;
    align-items: end !important;
    flex: 0 0 auto !important;
    min-height: 68px !important;
    max-height: 68px !important;
    margin-top: 0 !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-field {
    gap: 2px !important;
    min-width: 0 !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-field > span {
    font-size: 8px !important;
    line-height: 1.1 !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-field .admin-field-desc {
    font-size: 8px !important;
    line-height: 1.25 !important;
    margin: 0 0 1px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-field .form-input {
    min-height: 24px !important;
    height: 24px !important;
    padding: 0 6px !important;
    font-size: 10px !important;
    line-height: 24px !important;
    border-radius: 6px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-field select.form-input {
    padding-right: 18px !important;
}

.admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .order-items-empty {
    grid-column: 1 / -1 !important;
    padding: 12px !important;
    font-size: 11px !important;
    color: var(--dadmin-muted) !important;
    text-align: center !important;
}

@media (max-width: 720px) {
    .admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts.tebex-admin-products {
        grid-template-columns: repeat(auto-fill, minmax(0, 1fr)) !important;
    }

    .admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-product-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
    }

    .admin-menu-right-wrapper .tebex-admin-wrapper #tebexAdminProducts .tebex-product-meta {
        grid-template-columns: 1fr !important;
    }
}

/* Route Creator — dadmin color scheme (colors/icons only) */
.admin-menu-right-wrapper .route-creator-wrapper {
    color: var(--dadmin-text);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-content > h2.route-creator-page-title,
.admin-menu-right-wrapper .route-creator-wrapper .route-sec-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dadmin-text);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-page-title {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dadmin-line);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-page-title i,
.admin-menu-right-wrapper .route-creator-wrapper .route-sec-title i {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    flex: 0 0 23px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 8px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 11px;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-page-title i {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 13px;
}

.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header {
    border-bottom-color: var(--dadmin-line);
}

.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header h3.route-sec-title {
    flex: 1 1 200px;
    min-width: 0;
    padding: 0;
    line-height: 1.25;
    font-size: 11px;
    color: var(--dadmin-text);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-active-route,
.admin-menu-right-wrapper .route-creator-wrapper .route-import-dialog,
.admin-menu-right-wrapper .route-creator-wrapper .route-editor-panel,
.admin-menu-right-wrapper .route-creator-wrapper .route-creator-homepage.form-section2 {
    border: 1px solid var(--dadmin-line) !important;
    background: var(--dadmin-surface) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-homepage.form-section2 {
    border-left: 3px solid var(--dadmin-accent-line) !important;
    color: var(--dadmin-text);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-homepage.form-section2 i {
    color: var(--dadmin-accent);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-creator-homepage.form-section2:hover {
    background: var(--dadmin-surface-2) !important;
    border-color: var(--dadmin-accent-line) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-editor-toolbar {
    border: 1px solid var(--dadmin-line);
    background: var(--dadmin-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-editor-title {
    color: var(--dadmin-text);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-editor-subtitle,
.admin-menu-right-wrapper .route-creator-wrapper .route-graph-hint,
.admin-menu-right-wrapper .route-creator-wrapper .inspector-meta-hint,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-subtitle {
    color: var(--dadmin-muted);
}

.admin-menu-right-wrapper .route-creator-wrapper .meta-sec-title,
.admin-menu-right-wrapper .route-creator-wrapper .meta-lbl,
.admin-menu-right-wrapper .route-creator-wrapper .route-item-type {
    color: var(--dadmin-muted-2);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-item-header,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-title,
.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node-title {
    color: var(--dadmin-text);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-item-type {
    border-color: var(--dadmin-line);
    background: rgba(255, 255, 255, 0.03);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-item {
    border-bottom-color: var(--dadmin-line-soft);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--dadmin-line);
}

.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header .active-routes-search,
.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header .route-list-filter,
.admin-menu-right-wrapper .route-creator-wrapper .route-import-dialog-input,
.admin-menu-right-wrapper .route-creator-wrapper .route-graph-context {
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid var(--dadmin-line) !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header .active-routes-search:focus,
.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header .route-list-filter:focus {
    border-color: var(--dadmin-accent-line) !important;
    box-shadow: 0 0 0 2px var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-viewport {
    border-color: var(--dadmin-line);
    background-color: #12131a;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 16px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node {
    background: var(--dadmin-surface-2);
    border-color: var(--dadmin-line);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node-meta {
    border-left-color: var(--dadmin-accent);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node-badge {
    background: var(--dadmin-accent);
    color: #052e16;
    box-shadow: 0 2px 8px var(--dadmin-accent-soft);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node:hover,
.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node.selected {
    border-color: var(--dadmin-accent-line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--dadmin-accent-soft);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node::before {
    background:
        radial-gradient(ellipse 20px 20px at 0 0, rgba(74, 222, 128, 0.45), transparent 72%),
        linear-gradient(90deg, rgba(74, 222, 128, 0.85) 0%, rgba(74, 222, 128, 0.2) 42%, transparent 72%) 0 0 / 56% 2px no-repeat,
        linear-gradient(180deg, rgba(74, 222, 128, 0.85) 0%, rgba(74, 222, 128, 0.18) 42%, transparent 72%) 0 0 / 2px 56% no-repeat;
    filter: drop-shadow(-2px -2px 5px rgba(74, 222, 128, 0.25));
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node::after {
    background:
        radial-gradient(ellipse 20px 20px at 100% 100%, rgba(74, 222, 128, 0.45), transparent 72%),
        linear-gradient(270deg, rgba(74, 222, 128, 0.85) 0%, rgba(74, 222, 128, 0.2) 42%, transparent 72%) 100% 100% / 56% 2px no-repeat,
        linear-gradient(0deg, rgba(74, 222, 128, 0.85) 0%, rgba(74, 222, 128, 0.18) 42%, transparent 72%) 100% 100% / 2px 56% no-repeat;
    filter: drop-shadow(2px 2px 5px rgba(74, 222, 128, 0.25));
}

.admin-menu-right-wrapper .route-creator-wrapper .route-graph-node-tools button:hover {
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    box-shadow: 0 0 0 1px var(--dadmin-accent-line);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-header {
    border-bottom-color: var(--dadmin-line);
}

.admin-menu-right-wrapper .route-creator-wrapper .job-name-route-hint {
    color: var(--dadmin-muted);
    background: var(--dadmin-accent-soft);
    border-color: var(--dadmin-accent-line);
}

.admin-menu-right-wrapper .route-creator-wrapper .btn,
.admin-menu-right-wrapper .route-creator-wrapper .btn-small {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--dadmin-line) !important;
    color: var(--dadmin-text) !important;
    box-shadow: none !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .btn:hover,
.admin-menu-right-wrapper .route-creator-wrapper .btn-small:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    filter: none !important;
    transform: none !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .meta-add-btn,
.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header #importRouteKeyBtn,
.admin-menu-right-wrapper .route-creator-wrapper .duplicate-route-btn,
.admin-menu-right-wrapper .route-creator-wrapper .edit-route-btn {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
    color: var(--dadmin-accent) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .active-routes-header #createNewRoute,
.admin-menu-right-wrapper .route-creator-wrapper .route-save-btn {
    color: #052e16 !important;
    border-color: transparent !important;
    background: var(--dadmin-accent) !important;
    font-weight: 800 !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--dadmin-line) !important;
    color: var(--dadmin-muted) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .delete-route-btn,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-btn-delete,
.admin-menu-right-wrapper .route-creator-wrapper .remove-btn {
    color: #fca5a5 !important;
    background: rgba(239, 68, 68, 0.12) !important;
    border-color: rgba(239, 68, 68, 0.28) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .point-number,
.admin-menu-right-wrapper .route-creator-wrapper .update-coord-btn,
.admin-menu-right-wrapper .route-creator-wrapper .process-row {
    border-left-color: var(--dadmin-accent) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .point-number,
.admin-menu-right-wrapper .route-creator-wrapper .update-coord-btn {
    background: var(--dadmin-accent) !important;
    color: #052e16 !important;
    box-shadow: 0 2px 8px var(--dadmin-accent-soft) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .process-row,
.admin-menu-right-wrapper .route-creator-wrapper .process-settings,
.admin-menu-right-wrapper .route-creator-wrapper .take-settings,
.admin-menu-right-wrapper .route-creator-wrapper .coord-display {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .form-section,
.admin-menu-right-wrapper .route-creator-wrapper .form-section2:not(.route-creator-homepage) {
    background: var(--dadmin-surface) !important;
    border: 1px solid var(--dadmin-line) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper input:checked + .slider {
    background: var(--dadmin-accent) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-import-dialog {
    border-left-color: var(--dadmin-accent-line) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-inline-toast-dot {
    background: var(--dadmin-accent);
    box-shadow: 0 0 10px var(--dadmin-accent-soft);
}

.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-meta .form-input,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-meta select.form-input,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-meta .meta-input,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-meta .vehicle-hash,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-meta .vehicle-name,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-step .form-input,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-step select.form-input,
.admin-menu-right-wrapper .route-creator-wrapper .meta-vehicle-row .form-input,
.admin-menu-right-wrapper .route-creator-wrapper .meta-coord-row .form-input,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-step .insp-item-row input.form-section2 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    margin-top: 4px !important;
    min-height: 29px !important;
    height: auto !important;
    padding: 5px 7px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    border-radius: 8px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid var(--dadmin-line) !important;
    color: var(--dadmin-text) !important;
    box-sizing: border-box !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-meta .form-input:focus,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-meta select.form-input:focus,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-step .form-input:focus,
.admin-menu-right-wrapper .route-creator-wrapper .route-inspector-step select.form-input:focus {
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06) !important;
    outline: none !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .meta-lbl {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    color: rgba(244, 244, 245, 0.78) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .insp-check,
.admin-menu-right-wrapper .route-creator-wrapper .meta-trailer-line,
.admin-menu-right-wrapper .route-creator-wrapper .insp-toggle-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    font-size: 11px !important;
    color: var(--dadmin-muted-2) !important;
    cursor: pointer !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .insp-toggle-chip {
    min-height: 0 !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .route-creator-wrapper .insp-toggle-chip:has(input:checked) {
    border-color: var(--dadmin-accent-line) !important;
    background: var(--dadmin-accent-soft) !important;
}

/* Order Items / Vehicle Store — NPC tile compact */
.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin.world-config-tile,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin.world-config-tile {
    flex: 0 0 auto !important;
    padding: 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 12px !important;
    background: var(--dadmin-surface) !important;
    box-shadow: none !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin .world-config-tile-title,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin .world-config-tile-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 6px !important;
    padding: 0 0 4px !important;
    border-bottom: 1px solid var(--dadmin-line) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--dadmin-text) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin .world-config-tile-title i,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin .world-config-tile-title i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    border: 1px solid var(--dadmin-accent-line);
    border-radius: 7px;
    background: var(--dadmin-accent-soft);
    color: var(--dadmin-accent);
    font-size: 10px;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin .world-config-tile-body,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin .world-config-tile-body {
    gap: 4px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-compact-grid,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-compact-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 5px 6px !important;
    align-items: end !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin .world-config-mini-label,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin .world-config-mini-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 2px !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-admin .form-input--tight,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-admin .form-input--tight {
    min-height: 26px !important;
    height: 26px !important;
    padding: 0 6px !important;
    font-size: 11px !important;
    line-height: 26px !important;
    border-radius: 7px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coords,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-coords {
    margin-top: 4px !important;
    padding: 6px 8px !important;
    border: 1px solid var(--dadmin-line) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.025) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coords .world-config-coord-head,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-coords .world-config-coord-head {
    margin-bottom: 4px !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coords .world-config-coord-title,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-coords .world-config-coord-title {
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--dadmin-muted-2) !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coord-grid,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-coord-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(84px, 0.85fr) !important;
    gap: 5px 6px !important;
    align-items: end !important;
}

.admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-pick.btn,
.admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-pick.btn {
    width: 100% !important;
    min-height: 26px !important;
    height: 26px !important;
    padding: 0 6px !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
    border-radius: 7px !important;
}

@media (max-width: 1180px) {
    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-compact-grid,
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-compact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-compact-grid,
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-compact-grid,
    .admin-menu-right-wrapper .order-items-admin-wrapper .order-items-npc-coord-grid,
    .admin-menu-right-wrapper .vehicle-store-admin-wrapper .order-items-npc-coord-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Shell texture modals — align with admin dadmin panel */
.shell-textures-mkdir-modal {
    background: rgba(0, 0, 0, 0.62);
}

.shell-textures-mkdir-modal-card,
.shell-textures-mkdir-modal-card.shell-textures-new-shell-wizard-card {
    background: rgba(18, 18, 22, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45) !important;
    border-radius: 14px !important;
}

.shell-textures-mkdir-modal-title {
    color: #f4f4f5 !important;
    font-size: 14px !important;
}

.shell-textures-mkdir-modal-hint,
.shell-textures-mkdir-modal-hint-small {
    color: #a1a1aa !important;
}

.shell-textures-mkdir-modal-input {
    background: rgba(12, 12, 14, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #f4f4f5 !important;
    border-radius: 10px !important;
}

.shell-textures-mkdir-modal-input::placeholder {
    color: #71717a !important;
}

.shell-textures-mkdir-modal-input:focus {
    border-color: rgba(74, 222, 128, 0.35) !important;
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.12);
}

input[type="file"].shell-textures-mkdir-modal-input::file-selector-button {
    background: rgba(74, 222, 128, 0.1) !important;
    border: 1px solid rgba(74, 222, 128, 0.28) !important;
    color: #4ade80 !important;
    border-radius: 7px !important;
}

input[type="file"].shell-textures-mkdir-modal-input::file-selector-button:hover {
    background: rgba(74, 222, 128, 0.18) !important;
}

.shell-textures-extra-parts-wrap {
    background: rgba(12, 12, 14, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
}

.shell-textures-extra-row-header {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.shell-textures-extra-th-title {
    color: #f4f4f5 !important;
}

.shell-textures-extra-th-desc {
    color: #71717a !important;
}

.shell-textures-extra-th--action .shell-textures-extra-th-title {
    color: rgba(74, 222, 128, 0.92) !important;
}

.shell-textures-mkdir-modal-actions {
    gap: 8px !important;
    padding-top: 4px;
}

.shell-textures-mkdir-modal-btn {
    border-radius: 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.04em !important;
}

.shell-textures-mkdir-modal-btn.is-cancel {
    color: #e4e4e7 !important;
    background: rgba(18, 18, 22, 0.88) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.shell-textures-mkdir-modal-btn.is-cancel:hover {
    border-color: rgba(255, 255, 255, 0.14) !important;
    background: rgba(22, 22, 27, 0.95) !important;
}

.shell-textures-mkdir-modal-btn.is-ok {
    color: rgba(220, 252, 231, 0.98) !important;
    background: rgba(74, 222, 128, 0.12) !important;
    border-color: rgba(74, 222, 128, 0.35) !important;
}

.shell-textures-mkdir-modal-btn.is-ok:hover {
    background: rgba(74, 222, 128, 0.2) !important;
    border-color: rgba(74, 222, 128, 0.5) !important;
}

.shell-textures-mkdir-modal-btn.is-danger {
    background: rgba(72, 22, 28, 0.88) !important;
    border-color: rgba(248, 113, 113, 0.35) !important;
    color: rgba(254, 226, 226, 0.98) !important;
}

.shell-textures-mkdir-modal-btn.is-danger:hover {
    background: rgba(88, 26, 34, 0.95) !important;
    border-color: rgba(248, 113, 113, 0.5) !important;
}

.shell-textures-new-shell-wizard-card {
    padding: 20px 22px 16px !important;
}

.shell-textures-upload-btn {
    color: rgba(220, 252, 231, 0.98) !important;
    background: rgba(74, 222, 128, 0.12) !important;
    border: 1px solid rgba(74, 222, 128, 0.32) !important;
    border-radius: 10px !important;
}

.shell-textures-upload-btn:hover {
    border-color: rgba(74, 222, 128, 0.5) !important;
    background: rgba(74, 222, 128, 0.2) !important;
}

.shell-textures-extra-row .shellTexturesNewShellWizardExtraAdd,
.shell-textures-extra-row .shellTexturesNewShellWizardExtraRemove {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.shell-textures-extra-row .shellTexturesNewShellWizardExtraAdd {
    color: #4ade80 !important;
    background: rgba(74, 222, 128, 0.1) !important;
    border-color: rgba(74, 222, 128, 0.32) !important;
}

.shell-textures-extra-row .shellTexturesNewShellWizardExtraAdd:hover {
    background: rgba(74, 222, 128, 0.2) !important;
    border-color: rgba(74, 222, 128, 0.5) !important;
}

.shell-textures-extra-row .shellTexturesNewShellWizardExtraRemove {
    color: rgba(254, 202, 202, 0.96) !important;
    background: rgba(248, 113, 113, 0.08) !important;
    border-color: rgba(248, 113, 113, 0.28) !important;
}

.shell-textures-extra-row .shellTexturesNewShellWizardExtraRemove:hover {
    background: rgba(248, 113, 113, 0.16) !important;
    border-color: rgba(248, 113, 113, 0.45) !important;
}

.shell-textures-mkdir-modal .shell-textures-upload-btn,
.shell-textures-mkdir-modal-card .shell-textures-upload-btn {
    padding: 7px 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}

.shell-textures-back:hover {
    border-color: rgba(255, 255, 255, 0.14) !important;
    background: rgba(22, 22, 27, 0.95) !important;
}

.shell-textures-bc-part.is-root {
    color: rgba(74, 222, 128, 0.85) !important;
}

.shell-textures-empty i {
    color: rgba(74, 222, 128, 0.45) !important;
}
