/* ????? ? ????????? UI ???????????? */

/*
 * ????? Tailwind???? border-box??? .hf-gnav__inner ? width:100% + padding
 * ??????????/??? overflow-x:hidden ???
 * ??????? html:has(body.cm-page) * ?? :has + ?? * ??????????????
 * Firefox ????? hover ???????? body.cm-page ????????
 */
html.cm-html {
    overflow-x: hidden;
    box-sizing: border-box;
}

/* inherit ? body.cm-page * ??????????? :has(*) */
html.cm-html *,
html.cm-html *::before,
html.cm-html *::after {
    box-sizing: inherit;
}

body.cm-page {
    --cm-cyan-1: #f0fdfa;
    --cm-cyan-2: #ecfeff;
    --cm-cyan-3: #e6fffa;
    --cm-cyan-glow: rgba(45, 212, 191, 0.22);
    --cm-cyan-soft: rgba(103, 232, 249, 0.18);
    --cm-teal-mist: rgba(20, 184, 166, 0.14);
    --cm-grid: rgba(13, 148, 136, 0.06);
    --cm-ink: #134e4a;
    margin: 0;
    min-height: 100vh;
    color: #1e293b;
    background-color: var(--cm-cyan-1);
    overflow-x: hidden;
    max-width: 100%;
}

body.cm-page.cm-drawer-open {
    overflow: hidden;
}

/* ???????????? sticky ?????????? */
body.cm-page.cm-drawer-open .hf-gnav {
    z-index: 50;
}

.cm-page__bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(165deg, #f0fdfa 0%, #ecfeff 36%, #e6fffa 64%, #f8fafc 100%);
}

.cm-page__bg-base {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 90% 56% at 50% -12%, var(--cm-cyan-glow), transparent 62%),
        radial-gradient(ellipse 48% 42% at 94% 68%, rgba(34, 211, 238, 0.14), transparent 58%),
        radial-gradient(ellipse 44% 38% at 4% 78%, var(--cm-teal-mist), transparent 55%);
}

.cm-page__bg-grid {
    position: absolute;
    inset: -1px;
    z-index: 2;
    opacity: 0.45;
    background-image:
        linear-gradient(var(--cm-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--cm-grid) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 86% 70% at 50% 42%, #000 16%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 86% 70% at 50% 42%, #000 16%, transparent 78%);
}

.cm-page__bg-orb {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    /* ???????? filter:blur??? Firefox ??????????? hover */
    filter: none;
    will-change: auto;
}

.cm-page__bg-orb--a {
    width: min(46vw, 560px);
    height: min(46vw, 560px);
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.28) 0%, rgba(45, 212, 191, 0.08) 42%, transparent 70%);
    /* ???????Firefox ???????? 0.5?1s */
    animation: none;
}

.cm-page__bg-orb--b {
    width: min(34vw, 400px);
    height: min(34vw, 400px);
    bottom: 4%;
    left: -6%;
    background: radial-gradient(circle at 50% 50%, rgba(103, 232, 249, 0.22) 0%, rgba(103, 232, 249, 0.06) 45%, transparent 72%);
    animation: none;
}

.cm-page__bg-orb--c {
    width: min(30vw, 360px);
    height: min(30vw, 360px);
    top: 46%;
    right: -4%;
    background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0.05) 48%, transparent 72%);
    animation: none;
}

@keyframes cm-bg-drift-a {
    0% { transform: translateX(-50%) translateY(0); opacity: 0.78; }
    100% { transform: translateX(-48%) translateY(18px); opacity: 1; }
}

@keyframes cm-bg-drift-b {
    0% { transform: translate(0, 0); opacity: 0.7; }
    100% { transform: translate(22px, -16px); opacity: 0.95; }
}

@keyframes cm-bg-drift-c {
    0% { transform: translate(0, 0); opacity: 0.66; }
    100% { transform: translate(-16px, 12px); opacity: 0.92; }
}

.cm-page__bg-icons {
    position: absolute;
    inset: 0;
    z-index: 3;
    color: #0f766e;
    --cm-content-w: 1600px;
    --cm-gutter: 28px;
    --cm-icon: 72px;
    --cm-pad-top: 14px;
    --cm-pad-bottom: 96px;
    --cm-edge: 16px;
    --cm-edge-left: 16px;
    --cm-edge-right: 16px;
}

.cm-page__icon {
    position: absolute;
    width: var(--cm-icon);
    height: var(--cm-icon);
    opacity: 0.17;
    filter: none;
    pointer-events: none;
}

/*
 * ???????????? gutter ???????????? gutter ????
 * ???.is-compact????????
 */
.cm-page__icon--checklist {
    top: calc(var(--cm-pad-top) + 10px);
    right: var(--cm-edge-right);
    animation: none;
}

.cm-page__icon--tree {
    top: calc(var(--cm-pad-top) + 10px);
    left: var(--cm-edge-left);
    animation: none;
}

.cm-page__icon--pass {
    bottom: max(36px, calc(var(--cm-pad-bottom) * 0.38));
    right: var(--cm-edge-right);
    animation: none;
}

.cm-page__icon--doc {
    bottom: max(40px, calc(var(--cm-pad-bottom) * 0.4));
    left: var(--cm-edge-left);
    animation: none;
}

.cm-page__bg-icons.is-compact .cm-page__icon {
    opacity: 0.14;
}

.cm-page__bg-icons.is-compact .cm-page__icon--tree,
.cm-page__bg-icons.is-compact .cm-page__icon--checklist {
    top: 12px;
}

.cm-page__bg-icons.is-compact .cm-page__icon--doc,
.cm-page__bg-icons.is-compact .cm-page__icon--pass {
    bottom: 28px;
}

@keyframes cm-icon-float {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-10px) rotate(2deg); }
}

.cm-page__bg-scrim {
    position: absolute;
    inset: 0;
    z-index: 4;
    background:
        linear-gradient(180deg, rgba(240, 253, 250, 0.28) 0%, rgba(236, 254, 255, 0.14) 48%, rgba(230, 255, 250, 0.2) 100%),
        radial-gradient(ellipse 82% 48% at 50% 0%, rgba(153, 246, 228, 0.14), transparent 68%);
}

.cm-page__bg-noise {
    position: absolute;
    inset: 0;
    z-index: 5;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

@media (prefers-reduced-motion: reduce) {
    .cm-page__bg-orb,
    .cm-page__icon {
        animation: none !important;
    }
}

/* ????? gutter ?????????????? */
@media (max-width: 1100px) {
    .cm-page__bg-icons {
        --cm-icon: 56px;
    }
    .cm-page__icon {
        opacity: 0.13;
    }
}

@media (max-width: 720px) {
    .cm-page__bg-icons {
        --cm-icon: 44px;
    }
    .cm-page__icon {
        opacity: 0.11;
    }
}

.cm-shell {
    --cm-shell-max: 1600px;
    --cm-shell-gutter: 28px;
    position: relative;
    z-index: 1;
    width: min(var(--cm-shell-max), calc(100vw - var(--cm-shell-gutter) * 2));
    max-width: var(--cm-shell-max);
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0 0;
    min-height: calc(100vh - 40px);
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ????????????? */
body.cm-page #hf-site-footer.hf-site-footer {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

body.cm-page #hf-site-footer .hf-site-footer__row {
    justify-content: center;
}

.cm-shell__spacer {
    height: clamp(calc(5.25rem + 26px), calc(12vh + 38px), calc(8.25rem + 26px));
    flex-shrink: 0;
    pointer-events: none;
}

.cm-topbar {
    display: none;
}

.cm-list-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 0.85rem 0.45rem;
    border-bottom: 1px solid rgba(204, 251, 241, 0.75);
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.72), rgba(255, 255, 255, 0.35));
}

.cm-list-actions .cm-top-menu {
    position: relative;
}

.cm-workspace {
    display: grid;
    grid-template-columns: minmax(280px, 300px) minmax(0, 1fr);
    gap: 12px;
    min-height: calc(100vh - 6.25rem);
    min-width: 0;
    width: 100%;
}

@media (max-width: 900px) {
    .cm-workspace {
        grid-template-columns: 1fr;
        min-height: min(75vh, 720px);
    }
}

.cm-tree-panel,
.cm-list-panel {
    border: 1px solid rgba(167, 243, 208, 0.45);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.05);
    min-width: 0;
}

.cm-list-panel {
    background: rgba(255, 255, 255, 0.94);
}

.cm-tree-panel {
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background:
        linear-gradient(165deg, rgba(240, 253, 250, 0.42) 0%, rgba(255, 255, 255, 0.28) 55%, rgba(236, 253, 245, 0.22) 100%);
    border-color: rgba(45, 212, 191, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.45) inset,
        0 10px 28px rgba(15, 118, 110, 0.04);
}

.cm-tree-panel .cm-panel-head {
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.38), rgba(255, 255, 255, 0.12));
    border-bottom-color: rgba(45, 212, 191, 0.18);
}

.cm-tree-panel .cm-panel-head--suite {
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.28), rgba(255, 255, 255, 0.08));
}

.cm-list-panel {
    /* ?????????????????????? */
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.cm-top-menu {
    position: relative;
}
.cm-top-menu.is-open .cm-top-menu__trigger {
    border-color: rgba(13, 148, 136, 0.45);
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.98), rgba(204, 251, 241, 0.55));
    color: #0f766e;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.14);
}
.cm-top-menu__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
    min-width: 11.5rem;
    padding: 0.4rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(45, 212, 191, 0.32);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(240, 253, 250, 0.94));
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12),
        0 2px 8px rgba(15, 118, 110, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: cm-menu-in 0.14s ease-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.cm-top-menu__panel[hidden] {
    display: none !important;
}
.cm-top-menu__item {
    appearance: none;
    border: 0;
    background: transparent;
    text-align: left;
    width: 100%;
    padding: 0.58rem 0.72rem;
    border-radius: 0.55rem;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}
.cm-top-menu__item:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(204, 251, 241, 0.9), rgba(236, 254, 255, 0.85));
    color: #0f766e;
    box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.22);
}
.cm-top-menu__item:disabled,
.cm-top-menu__item.is-hidden {
    display: none;
}

.cm-top-menu__item--danger {
    color: #b91c1c;
}

.cm-top-menu__item--danger:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.95), rgba(255, 247, 237, 0.85));
    color: #991b1b;
    box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.28);
}

.cm-top-menu.is-hidden {
    display: none !important;
}

@keyframes cm-menu-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cm-btn {
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #0f172a;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.cm-btn--primary {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
}

.cm-btn--primary:hover {
    background: #0d9488;
}

.cm-btn--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #94a3b8;
    border-color: #94a3b8;
    color: #fff;
}

.cm-btn--ghost {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(153, 246, 228, 0.65);
}

.cm-btn--ghost:hover {
    border-color: #5eead4;
    background: rgba(240, 253, 250, 0.95);
}

.cm-btn--ghost:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    color: #0f766e;
}

.cm-btn--danger {
    background: #fff;
    border-color: #fecaca;
    color: #b91c1c;
}

.cm-btn--sm {
    padding: 4px 10px;
    font-size: 0.8rem;
}

.cm-icon-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    color: #475569;
}

.cm-icon-btn:hover {
    background: #e2e8f0;
}

.cm-icon-btn:disabled,
.cm-icon-btn--labeled:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    color: #94a3b8;
    background: transparent;
}

.cm-top-menu__trigger:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #64748b;
    background: rgba(241, 245, 249, 0.9);
    border-color: rgba(203, 213, 225, 0.9);
}

.cm-input,
.cm-select,
.cm-textarea {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.875rem;
    background: #fff;
    color: #0f172a;
    min-width: 0;
}

.cm-textarea {
    width: 100%;
    resize: vertical;
    font-family: inherit;
}

.cm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #475569;
}

.cm-field--inline {
    flex-direction: row;
    align-items: center;
    margin: 0;
}

.cm-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cm-login-gate {
    margin-top: 48px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 16px;
    border: 1px solid rgba(153, 246, 228, 0.55);
    box-shadow: 0 12px 36px rgba(15, 118, 110, 0.06);
}

.cm-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(204, 251, 241, 0.8);
    font-size: 0.9rem;
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.65), rgba(255, 255, 255, 0.2));
}

.cm-panel-head--project {
    padding: 10px 12px;
    position: relative;
    z-index: 4;
    gap: 0.45rem;
}

.cm-btn-manage-projects {
    flex: 0 0 auto;
    height: 2.15rem;
    padding: 0 0.7rem;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    white-space: nowrap;
    border: 1px solid rgba(45, 212, 191, 0.38);
    border-radius: 0.7rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 253, 250, 0.72));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 1px 2px rgba(15, 118, 110, 0.06);
    color: #0f766e;
}

.cm-btn-manage-projects:hover {
    border-color: rgba(13, 148, 136, 0.55);
    background: rgba(255, 255, 255, 0.98);
    color: #0f766e;
}

.cm-panel-head--suite {
    padding: 8px 12px;
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.45), rgba(255, 255, 255, 0.15));
}

.cm-panel-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #5b7c7a;
}

.cm-select--project {
    flex: 1;
    min-width: 0;
    width: 100%;
}

/* ?????? */
.cm-panel-head--project .cm-filter-dd--project {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.cm-panel-head--project .cm-filter-dd--project .cm-filter-dd__btn {
    min-height: 2.35rem;
    min-width: 0;
    padding: 0.35rem 0.7rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(45, 212, 191, 0.5);
    background: linear-gradient(180deg, #ffffff, rgba(240, 253, 250, 0.92));
    box-shadow: 0 1px 2px rgba(15, 118, 110, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    color: #134e4a;
}

.cm-panel-head--project .cm-filter-dd--project .cm-filter-dd__btn:hover {
    border-color: rgba(13, 148, 136, 0.55);
    background: #fff;
}

.cm-panel-head--project .cm-filter-dd--project.is-open .cm-filter-dd__btn {
    border-color: rgba(13, 148, 136, 0.65);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

.cm-filter-dd__btn-tone--project,
.cm-panel-head--project .cm-filter-dd--project .cm-filter-dd__btn-tone {
    display: none;
}

.cm-panel-head--project .cm-filter-dd--project .cm-filter-dd__panel {
    z-index: 50;
    left: 0;
    right: auto;
    width: max(100%, 12rem);
    max-width: 18rem;
    max-height: 16rem;
    overflow-y: auto;
    padding: 0.35rem;
    border-radius: 0.75rem;
    box-shadow: 0 14px 36px rgba(15, 118, 110, 0.16);
}

.cm-panel-head--project .cm-filter-dd--project .cm-filter-dd__option {
    padding: 0.5rem 0.55rem;
    border-radius: 0.55rem;
    font-size: 0.875rem;
}

.cm-filter-dd__option--project::before,
.cm-panel-head--project .cm-filter-dd--project .cm-filter-dd__option::before {
    display: none;
}

.cm-filter-dd__option--project.is-selected {
    color: #0f766e;
    background: rgba(204, 251, 241, 0.75);
}

.cm-icon-btn--labeled {
    width: auto;
    min-width: 0;
    height: 2rem;
    padding: 0 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    border: 1px solid rgba(45, 212, 191, 0.42);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.88);
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.cm-icon-btn--labeled:hover {
    background: rgba(204, 251, 241, 0.95);
    border-color: rgba(13, 148, 136, 0.5);
}

.cm-icon-btn__plus {
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 700;
}

.cm-icon-btn__text {
    line-height: 1;
}

@media (max-width: 1100px) {
    .cm-icon-btn--labeled .cm-icon-btn__text {
        display: none;
    }
    .cm-icon-btn--labeled {
        width: 2rem;
        padding: 0;
    }
}

.cm-tree {
    list-style: none;
    margin: 0;
    padding: 0.45rem 0.5rem 0.7rem;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow: auto;
}

.cm-tree__item {
    margin: 0 0 0.15rem;
}

.cm-tree__item > .cm-tree__label {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 0.45rem 0.65rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.cm-tree__item > .cm-tree__label:hover,
.cm-tree__item.is-active > .cm-tree__label {
    background: rgba(236, 253, 245, 0.95);
    color: #0f766e;
}

.cm-tree__item--suite {
    display: block;
}

.cm-tree__row {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    min-height: 2rem;
    padding: 0.1rem 0.2rem 0.1rem calc(0.2rem + var(--cm-tree-depth, 0) * 0.85rem);
    border-radius: 0.5rem;
    min-width: 0;
}

.cm-tree__item--suite:hover > .cm-tree__row,
.cm-tree__item--suite.is-active > .cm-tree__row {
    background: rgba(236, 253, 245, 0.95);
}

.cm-tree__twist {
    flex: 0 0 1.85rem;
    width: 1.85rem;
    height: 1.85rem;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(241, 245, 249, 0.8);
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.85rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.45rem;
}

.cm-tree__twist:hover:not(.is-leaf) {
    color: #0f766e;
    background: rgba(167, 243, 208, 0.7);
}

.cm-tree__twist.is-leaf {
    cursor: default;
    pointer-events: none;
    background: transparent;
    color: transparent;
}

.cm-tree__item--suite .cm-tree__label {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    margin: 0;
    padding: 0.35rem 0.35rem;
    border: none;
    background: transparent !important;
    border-radius: 0.35rem;
    text-align: left;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-tree__item--suite.is-active .cm-tree__label,
.cm-tree__item--suite .cm-tree__label:hover {
    color: #0f766e;
    background: transparent !important;
}

.cm-tree__actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
}

.cm-tree__item--suite:hover .cm-tree__actions,
.cm-tree__item--suite.is-active .cm-tree__actions {
    opacity: 1;
    pointer-events: auto;
}

.cm-tree__actions .cm-icon-btn {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    padding: 0;
    border: none;
    border-radius: 0.3rem;
    background: transparent;
    color: #64748b;
    font-size: 0.7rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cm-tree__actions .cm-icon-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0f766e;
}

.cm-tree__actions .cm-icon-btn[title="??"]:hover {
    color: #b91c1c;
    background: #fee2e2;
}

.cm-list-actions {
    display: none;
}

.cm-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(204, 251, 241, 0.8);
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.5), transparent);
}

.cm-toolbar__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.cm-toolbar__actions .cm-top-menu {
    position: relative;
}

#cm-top-menu-batch .cm-top-menu__panel {
    min-width: 11.5rem;
}

/* ??????????????????? */
.cm-toolbar #cm-btn-new-case {
    margin-left: 0;
}

.cm-toolbar .cm-search-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
    max-width: 100%;
}

.cm-toolbar .cm-search-field {
    flex: 0 1 200px;
    width: 200px;
    max-width: min(200px, 42vw);
    min-width: 120px;
    position: relative;
    display: flex;
    align-items: center;
}

.cm-toolbar .cm-search-field__input,
.cm-toolbar .cm-search-field .cm-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    padding-right: 28px;
}

/* ??????? search ????????? ?????????? */
.cm-toolbar .cm-search-field__input::-webkit-search-decoration,
.cm-toolbar .cm-search-field__input::-webkit-search-cancel-button,
.cm-toolbar .cm-search-field__input::-webkit-search-results-button,
.cm-toolbar .cm-search-field__input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.cm-search-field__clear {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.18);
    color: #64748b;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.cm-search-field__clear:hover {
    background: rgba(100, 116, 139, 0.32);
    color: #334155;
}

.cm-search-field__clear.is-hidden {
    display: none;
}

.cm-toolbar .cm-input {
    flex: 1;
    min-width: 160px;
}

.cm-modal--projects {
    width: min(460px, 94vw);
    max-height: min(78vh, 560px);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.cm-modal.cm-modal--projects {
    padding: 0;
    padding-bottom: 0;
    overflow: hidden;
    max-height: min(78vh, 560px);
}

.cm-modal--projects .cm-modal__head {
    flex: 0 0 auto;
    padding: 0.85rem 0.95rem 0.75rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(45, 212, 191, 0.22);
    background: linear-gradient(180deg, rgba(204, 251, 241, 0.7), rgba(240, 253, 250, 0.25));
}

.cm-modal--projects .cm-modal__head-main {
    min-width: 0;
    flex: 1 1 auto;
}

.cm-modal--projects .cm-modal__head strong {
    margin: 0;
    font-size: 0.98rem;
}

.cm-projects-lead {
    margin: 4px 0 0;
    max-width: 22rem;
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.4;
    color: #5b7c7a;
}

.cm-projects-head-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    margin-top: 0.1rem;
}

.cm-projects-list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 120px;
    max-height: min(48vh, 360px);
    overflow: auto;
    padding: 0.4rem 0.55rem;
    scrollbar-gutter: stable;
}

.cm-projects-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.cm-projects-item:hover {
    background: rgba(240, 253, 250, 0.72);
    border-color: rgba(167, 243, 208, 0.55);
}

.cm-projects-item.is-current {
    border-color: rgba(13, 148, 136, 0.42);
    background: rgba(204, 251, 241, 0.42);
    box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.12);
    cursor: default;
}

.cm-projects-item.is-switching {
    opacity: 0.65;
    pointer-events: none;
}

.cm-projects-item__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cm-projects-item__title-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.cm-projects-item__name {
    display: block;
    font-weight: 700;
    color: #134e4a;
    font-size: 0.875rem;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-projects-item__badge {
    flex: 0 0 auto;
    padding: 0.08rem 0.4rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f766e;
    background: rgba(45, 212, 191, 0.22);
    border: 1px solid rgba(13, 148, 136, 0.28);
    line-height: 1.3;
}

.cm-projects-item__meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.3;
}

.cm-projects-item__role {
    display: inline-flex;
    align-items: center;
    padding: 0.05rem 0.35rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 650;
    color: #0f766e;
    background: rgba(240, 253, 250, 0.95);
    border: 1px solid rgba(45, 212, 191, 0.35);
}

.cm-projects-item__actions {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    opacity: 0.55;
    transition: opacity 0.12s ease;
}

.cm-projects-item:hover .cm-projects-item__actions,
.cm-projects-item.is-current .cm-projects-item__actions {
    opacity: 1;
}

.cm-projects-item__action {
    height: 1.7rem;
    padding: 0 0.45rem;
    border: 1px solid transparent;
    border-radius: 7px;
    background: transparent;
    font-size: 0.72rem;
    font-weight: 650;
    color: #64748b;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.cm-projects-item__action:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(148, 163, 184, 0.45);
    color: #0f766e;
}

.cm-projects-item__action--danger {
    color: #b91c1c;
}

.cm-projects-item__action--danger:hover {
    background: rgba(254, 226, 226, 0.75);
    border-color: rgba(248, 113, 113, 0.55);
    color: #991b1b;
}

.cm-projects-empty {
    margin: 1.5rem 0.75rem;
    padding: 1.1rem 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.5;
    border-radius: 12px;
    border: 1px dashed rgba(45, 212, 191, 0.45);
    background: rgba(240, 253, 250, 0.45);
}

.cm-modal--projects .cm-projects-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.9rem 0.8rem;
    border-top: 1px solid rgba(45, 212, 191, 0.18);
    background: linear-gradient(0deg, rgba(240, 253, 250, 0.85), rgba(255, 255, 255, 0.35));
}

.cm-projects-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #7c9a98;
}

.cm-modal--members {
    width: min(560px, 94vw);
    max-height: min(90vh, 820px);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
}

.cm-modal--members.is-dd-open {
    overflow: visible;
}

.cm-modal--members .cm-modal__head {
    padding: 14px 16px 8px;
    align-items: flex-start;
}

.cm-modal--members .cm-modal__head-main {
    min-width: 0;
    flex: 1 1 auto;
}

.cm-modal--members .cm-modal__head strong {
    margin: 0;
}

.cm-members-lead {
    margin: 4px 0 0;
    max-width: 28rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.45;
    color: #5b7c7a;
    letter-spacing: 0.01em;
}

.cm-members-lead[data-tone="warn"] {
    color: #9a3412;
}

.cm-members-lead[data-tone="muted"] {
    color: #94a3b8;
}

.cm-members-invite {
    margin: 0 16px 10px;
}

.cm-members-invite.is-hidden {
    display: none;
}

.cm-members-invite__card {
    border: 1px solid rgba(13, 148, 136, 0.18);
    border-radius: 12px;
    padding: 8px 10px 9px;
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.95), rgba(255, 255, 255, 0.88));
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.05);
    display: grid;
    gap: 6px;
}

.cm-members-invite__title {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #0f766e;
    letter-spacing: 0.02em;
}

.cm-members-invite__card > .cm-field {
    margin-bottom: 0;
    gap: 3px;
}

.cm-members-invite__card > .cm-field > span {
    font-size: 11px;
    line-height: 1.2;
    color: #64748b;
}

.cm-members-invite-result {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(13, 148, 136, 0.14);
}

.cm-members-invite-result.is-hidden {
    display: none;
}

.cm-members-invite-result__user {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cm-members-invite-result__user strong {
    font-size: 12px;
    font-weight: 650;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-members-invite-result__meta {
    font-size: 11px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-members-invite-result .cm-select--members-role-mini,
.cm-members-invite-result .cm-filter-dd--role-mini {
    flex: 0 0 auto;
    width: 4.5rem;
    min-width: 4.5rem;
    max-width: 4.5rem;
}

.cm-members-invite-result .cm-filter-dd--role-mini .cm-filter-dd__btn {
    width: 100%;
    min-height: 2rem;
    height: 2rem;
    padding: 0 0.45rem;
    border-radius: 8px;
    font-size: 12px;
    justify-content: space-between;
}

.cm-members-invite-result .cm-filter-dd--role-mini .cm-filter-dd__panel,
.cm-filter-dd--role-mini.cm-filter-dd.is-portal-open .cm-filter-dd__panel {
    width: 4.5rem;
    min-width: 4.5rem;
    max-width: 4.5rem;
}

.cm-members-invite-result .cm-filter-dd--role-mini .cm-filter-dd__opt {
    padding: 0.35rem 0.5rem;
    font-size: 12px;
}

.cm-members-invite-btn,
.cm-members-invite-result #cm-members-invite-btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 3.5rem;
    height: 2rem;
    padding: 0 0.75rem;
    white-space: nowrap;
    margin: 0;
    font-size: 12px;
}

.cm-members-search-bar {
    display: flex;
    align-items: stretch;
    gap: 6px;
}

.cm-members-search-bar .cm-input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.1rem;
    height: 2.1rem;
    padding: 0.25rem 0.6rem;
    font-size: 12px;
}

.cm-members-search-btn,
.cm-members-search-bar #cm-members-search-btn {
    flex: 0 0 auto;
    width: 3.75rem;
    min-width: 3.75rem;
    height: 2.1rem;
    min-height: 2.1rem;
    padding: 0 0.5rem;
    white-space: nowrap;
    margin: 0;
    font-size: 12px;
}

.cm-members-search-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 6.5rem;
    overflow: auto;
    padding: 0;
}

.cm-members-search-list.is-empty:empty {
    display: none;
}

.cm-members-search-list.is-empty:not(:empty) {
    max-height: none;
}

.cm-members-search-empty {
    margin: 0;
    font-size: 11px;
    color: #94a3b8;
    padding: 0.15rem 0.1rem;
}

.cm-members-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(13, 148, 136, 0.16);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 0.35rem 0.55rem;
    font-size: 12px;
    cursor: pointer;
    color: #134e4a;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.cm-members-search-item:hover {
    border-color: rgba(20, 184, 166, 0.45);
    background: #f0fdfa;
}

.cm-members-search-item.is-active {
    border-color: #14b8a6;
    background: #ccfbf1;
    box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.25);
}

.cm-members-search-item__meta {
    font-size: 11px;
    color: #64748b;
    white-space: nowrap;
}

.cm-members-picked {
    margin: 0;
    font-size: 11px;
    color: #0f766e;
    background: rgba(204, 251, 241, 0.65);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
}

.cm-members-picked.is-hidden {
    display: none;
}

.cm-members-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 16px 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0f766e;
}

.cm-members-count {
    font-weight: 600;
    color: #64748b;
}

.cm-members-table-wrap {
    flex: 1 1 auto;
    min-height: 220px;
    max-height: min(52vh, 420px);
    overflow: auto;
    margin: 0 16px;
    border: 1px solid rgba(13, 148, 136, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    position: relative;
    z-index: 1;
}

.cm-members-table-wrap.is-dd-open {
    overflow: visible;
    z-index: 5;
}

.cm-members-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ecfdf5;
}

.cm-members-table td,
.cm-members-table th {
    padding: 0.4rem 0.6rem;
    font-size: 13px;
}

.cm-members-table .cm-filter-dd--compact {
    position: relative;
    z-index: 2;
}

.cm-members-table .cm-filter-dd--compact.is-open {
    z-index: 20;
}

.cm-members-table .cm-filter-dd--compact .cm-filter-dd__panel {
    z-index: 90;
    max-width: 15rem;
    width: max-content;
    min-width: 100%;
}

.cm-members-role-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.cm-members-role-badge--owner {
    background: #fef3c7;
    color: #92400e;
}

.cm-members-role-badge--editor {
    background: #d1fae5;
    color: #065f46;
}

.cm-members-role-badge--viewer {
    background: #e2e8f0;
    color: #475569;
}

.cm-members-role-badge--pending {
    background: #ffedd5;
    color: #9a3412;
}

.cm-members-row--pending td {
    color: #78716c;
}

.cm-members-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.cm-btn-messages {
    position: relative;
}

.cm-msg-badge,
.hf-gnav__messages-badge {
    position: absolute;
    top: -0.28rem;
    right: -0.28rem;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #fb7185, #e11d48);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.05rem;
    text-align: center;
    pointer-events: none;
}

.cm-msg-badge.is-hidden,
.hf-gnav__messages-badge.is-hidden {
    display: none !important;
}

.cm-modal--messages {
    width: min(400px, 94vw);
    max-height: min(70vh, 500px);
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(45, 212, 191, 0.22) 0%, transparent 55%),
        radial-gradient(90% 70% at 100% 100%, rgba(13, 148, 136, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #f0fdfa 0%, #e6fffa 42%, #f8fafc 100%);
    border-color: rgba(45, 212, 191, 0.42);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 22px 48px -16px rgba(15, 118, 110, 0.32);
}

.cm-modal--messages .cm-modal__head {
    flex: 0 0 auto;
    padding: 0.85rem 0.95rem 0.7rem;
    align-items: center;
    border-bottom: 1px solid rgba(45, 212, 191, 0.22);
    background: linear-gradient(180deg, rgba(204, 251, 241, 0.7), rgba(240, 253, 250, 0.25));
}

.cm-modal--messages .cm-modal__head-main {
    min-width: 0;
}

.cm-modal--messages .cm-modal__eyebrow {
    margin: 0 0 0.15rem;
    color: rgba(15, 118, 110, 0.7);
}

.cm-modal--messages .cm-modal__head strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: #134e4a;
}

.cm-modal--messages .cm-modal__actions {
    flex: 0 0 auto;
    padding: 0.55rem 0.9rem 0.8rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(45, 212, 191, 0.18);
    background: linear-gradient(0deg, rgba(240, 253, 250, 0.85), rgba(255, 255, 255, 0.35));
}

.cm-messages-head-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
}

.cm-messages-head-actions #cm-messages-read-all {
    white-space: nowrap;
}

.cm-messages-head-actions #cm-messages-read-all:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.cm-messages-list {
    flex: 1 1 auto;
    overflow: auto;
    margin: 0;
    padding: 0.45rem 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 6rem;
    max-height: 50vh;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(240, 253, 250, 0.45));
}

.cm-messages-empty {
    margin: 1.75rem 0;
    text-align: center;
    color: #5b7c7a;
    font-size: 12px;
}

.cm-msg-card {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5rem 0.65rem 0.5rem 0.55rem;
    border: 1px solid rgba(45, 212, 191, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    cursor: pointer;
    transition: background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.cm-msg-card:last-child {
    border-bottom-color: rgba(45, 212, 191, 0.16);
}

.cm-msg-card:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(45, 212, 191, 0.35);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 4px 12px -6px rgba(15, 118, 110, 0.18);
}

.cm-msg-card.is-unread {
    background: linear-gradient(135deg, rgba(204, 251, 241, 0.75), rgba(255, 255, 255, 0.85));
    border-color: rgba(20, 184, 166, 0.38);
}

.cm-msg-card.is-unread:hover {
    background: linear-gradient(135deg, rgba(167, 243, 208, 0.45), rgba(255, 255, 255, 0.92));
}

.cm-msg-card.is-acted {
    opacity: 0.7;
}

.cm-msg-card__dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-top: 0.38rem;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.35);
    box-shadow: none;
}

.cm-msg-card.is-unread .cm-msg-card__dot {
    background: #0d9488;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.28);
}

.cm-msg-card__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.cm-msg-card__line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 0;
}

.cm-msg-card__title {
    min-width: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-msg-card.is-unread .cm-msg-card__title {
    font-weight: 700;
    color: #134e4a;
}

.cm-msg-card__time {
    flex: 0 0 auto;
    font-size: 0.65rem;
    font-variant-numeric: tabular-nums;
    color: #7c9a98;
    white-space: nowrap;
    line-height: 1.3;
}

.cm-msg-card__body {
    margin: 0;
    font-size: 0.7rem;
    color: #5b7c7a;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-msg-card.is-unread .cm-msg-card__body {
    color: #0f766e;
}

.cm-msg-card__actions {
    display: flex;
    gap: 4px;
    margin-top: 0.25rem;
}

.cm-msg-card__actions .cm-btn--sm {
    padding: 1px 8px;
    font-size: 0.68rem;
    line-height: 1.45;
}

.cm-msg-card__meta {
    margin: 0;
    font-size: 0.65rem;
    color: #7c9a98;
    line-height: 1.3;
}

.cm-modal--transfer {
    max-width: 26rem;
}

.cm-members-role-select {
    min-width: 6.5rem;
    font-size: 12px;
    padding: 0.25rem 0.4rem;
    border-radius: 8px;
}

.cm-members-table .cm-filter-dd--compact {
    min-width: 7.25rem;
    width: 7.25rem;
    flex: 0 0 auto;
}

.cm-members-table .cm-filter-dd--compact .cm-filter-dd__btn {
    min-height: 2rem;
    height: 2rem;
    padding: 0.2rem 0.5rem 0.2rem 0.4rem;
    border-radius: 0.55rem;
    font-size: 0.75rem;
}

.cm-members-table .cm-filter-dd--compact .cm-filter-dd__btn-tone {
    width: 0.45rem;
    height: 0.45rem;
}

.cm-result-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.cm-result-badge--pass {
    background: #d1fae5;
    color: #065f46;
}

.cm-result-badge--fail {
    background: #fee2e2;
    color: #991b1b;
}

.cm-result-badge--blocked {
    background: #ffedd5;
    color: #9a3412;
}

.cm-result-badge--skip {
    background: #e2e8f0;
    color: #475569;
}

.cm-result-badge--untested {
    background: #f1f5f9;
    color: #64748b;
}

.cm-trash-days {
    font-variant-numeric: tabular-nums;
}
.cm-trash-days--due {
    color: #b91c1c;
    font-weight: 650;
}
.cm-trash-days__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    background: rgba(13, 148, 136, 0.1);
    color: #0f766e;
    border: 1px solid rgba(13, 148, 136, 0.18);
    white-space: nowrap;
}
.cm-trash-days__pill--due {
    background: rgba(254, 226, 226, 0.9);
    color: #b91c1c;
    border-color: rgba(248, 113, 113, 0.35);
}
.cm-trash-days__pill--muted {
    background: rgba(148, 163, 184, 0.12);
    color: #64748b;
    border-color: rgba(148, 163, 184, 0.2);
}

.cm-modal--trash {
    width: min(52rem, calc(100vw - 2rem));
    max-width: 52rem;
    max-height: min(84vh, 46rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 0;
}
.cm-modal--trash .cm-modal__head {
    flex: 0 0 auto;
    padding: 1rem 1.05rem 0.7rem;
    border-bottom: 1px solid rgba(45, 212, 191, 0.16);
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.75), rgba(255, 255, 255, 0.35));
}
.cm-modal--trash .cm-modal__head-main {
    min-width: 0;
    flex: 1 1 auto;
}
.cm-trash-lead {
    margin: 0.28rem 0 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #5b7c7a;
}
.cm-trash-toolbar {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 0.75rem 1rem 0.65rem;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    background: rgba(240, 253, 250, 0.55);
}
.cm-trash-toolbar__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
    margin-left: auto;
}
.cm-trash-member-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #0f766e;
    font-weight: 650;
    flex: 0 0 auto;
}
.cm-trash-member-wrap.is-hidden {
    display: none !important;
}
.cm-trash-member-select {
    min-width: 9.5rem;
    height: 2rem;
    padding: 0 1.75rem 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 650;
    border-radius: 8px;
    border: 1px solid rgba(45, 212, 191, 0.42);
    background-color: rgba(255, 255, 255, 0.98);
    background-image:
        linear-gradient(45deg, transparent 50%, #0f766e 50%),
        linear-gradient(135deg, #0f766e 50%, transparent 50%);
    background-position:
        calc(100% - 14px) calc(50% - 2px),
        calc(100% - 9px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    color: #134e4a;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.cm-trash-member-select:hover,
.cm-trash-member-select:focus {
    outline: none;
    border-color: rgba(13, 148, 136, 0.55);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.16);
}
.cm-trash-page {
    margin-left: 0.15rem;
    font-size: 0.75rem;
    color: #64748b;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.cm-trash-table-wrap {
    flex: 1 1 auto;
    min-height: 14rem;
    overflow: auto;
    margin: 0 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 116, 139, 0.45) transparent;
}
.cm-trash-table-wrap::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.cm-trash-table-wrap::-webkit-scrollbar-thumb {
    background: rgba(100, 116, 139, 0.4);
    border-radius: 999px;
}
.cm-trash-table-wrap::-webkit-scrollbar-thumb:hover {
    background: rgba(71, 85, 105, 0.55);
}
.cm-trash-table-wrap::-webkit-scrollbar-track {
    background: transparent;
}
.cm-trash-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.84rem;
}
.cm-trash-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(248, 250, 252, 0.98);
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: left;
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    white-space: nowrap;
}
.cm-trash-table tbody td {
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    color: #0f172a;
    vertical-align: middle;
}
.cm-trash-table tbody tr:last-child td {
    border-bottom: 0;
}
.cm-trash-table tbody tr:hover td {
    background: rgba(240, 253, 250, 0.45);
}
.cm-trash-table .cm-th-check,
.cm-trash-table .cm-td-check {
    width: 2.2rem;
    text-align: center;
    padding-left: 0.45rem;
    padding-right: 0.35rem;
}
.cm-trash-table th:nth-child(2),
.cm-trash-table td:nth-child(2) {
    width: auto;
}
.cm-trash-table td:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}
.cm-trash-table th:nth-child(3),
.cm-trash-table td:nth-child(3) {
    width: 5.5rem;
}
.cm-trash-table th:nth-child(4),
.cm-trash-table td:nth-child(4) {
    width: 9.5rem;
}
.cm-trash-table td:nth-child(3),
.cm-trash-table td:nth-child(4) {
    color: #64748b;
    white-space: nowrap;
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cm-trash-table th:nth-child(5),
.cm-trash-table td:nth-child(5) {
    width: 5.25rem;
    text-align: center;
    padding-right: 0.75rem;
}
.cm-trash-table td:nth-child(5) .cm-trash-days__pill {
    max-width: 100%;
}
.cm-trash-table .cm-trash-empty {
    text-align: center;
    color: #94a3b8;
    padding: 2.4rem 1rem !important;
    font-size: 0.875rem;
    font-weight: 500;
}
.cm-trash-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    padding: 0.75rem 1rem 0.95rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.72);
}
.cm-trash-actions__pager {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    flex: 1 1 auto;
}

/* ??????????? / ???? */
.cm-filter-dd {
    position: relative;
    flex: 0 0 auto;
    min-width: 8.75rem;
}

.cm-filter-dd__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cm-filter-dd__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 2.35rem;
    padding: 0.35rem 0.55rem 0.35rem 0.5rem;
    border: 1px solid rgba(45, 212, 191, 0.42);
    border-radius: 0.7rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.88));
    color: #134e4a;
    font-size: 0.8125rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 118, 110, 0.06);
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.cm-filter-dd__btn:hover {
    border-color: rgba(13, 148, 136, 0.55);
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.08);
}

.cm-filter-dd.is-open .cm-filter-dd__btn {
    border-color: rgba(13, 148, 136, 0.65);
    box-shadow:
        0 0 0 3px rgba(45, 212, 191, 0.16),
        0 6px 16px rgba(15, 118, 110, 0.08);
}

.cm-filter-dd__btn-tone {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 999px;
    flex-shrink: 0;
    background: #94a3b8;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(148, 163, 184, 0.28);
}

.cm-filter-dd__btn-tone--all { background: #94a3b8; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(148, 163, 184, 0.28); }
.cm-filter-dd__btn-tone--p0 { background: #dc2626; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(220, 38, 38, 0.22); }
.cm-filter-dd__btn-tone--p1 { background: #ea580c; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(234, 88, 12, 0.22); }
.cm-filter-dd__btn-tone--p2 { background: #ca8a04; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(202, 138, 4, 0.22); }
.cm-filter-dd__btn-tone--p3 { background: #0284c7; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(2, 132, 199, 0.22); }
.cm-filter-dd__btn-tone--draft { background: #64748b; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(100, 116, 139, 0.22); }
.cm-filter-dd__btn-tone--ready { background: #059669; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(5, 150, 105, 0.22); }
.cm-filter-dd__btn-tone--deprecated { background: #b45309; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(180, 83, 9, 0.22); }
.cm-filter-dd__btn-tone--editor { background: #059669; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(5, 150, 105, 0.22); }
.cm-filter-dd__btn-tone--viewer { background: #64748b; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(100, 116, 139, 0.22); }
.cm-filter-dd__btn-tone--owner { background: #d97706; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(217, 119, 6, 0.22); }

.cm-filter-dd__btn-text {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-filter-dd__chev {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.95), rgba(204, 251, 241, 0.75));
    box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.28);
    position: relative;
    opacity: 1;
    transform: none;
    transition: transform 0.16s ease, background 0.15s ease;
}

.cm-filter-dd__chev::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    width: 0.34rem;
    height: 0.34rem;
    border-right: 1.5px solid #0f766e;
    border-bottom: 1.5px solid #0f766e;
    transform: translate(-50%, -60%) rotate(45deg);
}

.cm-filter-dd.is-open .cm-filter-dd__chev {
    transform: rotate(180deg);
    background: linear-gradient(180deg, rgba(204, 251, 241, 0.95), rgba(167, 243, 208, 0.8));
}

.cm-filter-dd__panel {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    z-index: 40;
    min-width: 100%;
    width: max-content;
    max-width: 17rem;
    padding: 0.4rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(45, 212, 191, 0.32);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(240, 253, 250, 0.96));
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12),
        0 2px 8px rgba(15, 118, 110, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cm-filter-dd.is-open .cm-filter-dd__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0s;
}

/* ?? body??? transform / overflow ?? */
.cm-filter-dd__panel.is-portal-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    position: fixed !important;
    transition: none !important;
    max-width: 17rem;
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.14),
        0 2px 8px rgba(15, 118, 110, 0.1);
}

.cm-filter-dd__option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
    padding: 0.52rem 0.62rem;
    border: none;
    border-radius: 0.55rem;
    background: transparent;
    color: #334155;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}

.cm-filter-dd__option::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    flex-shrink: 0;
    background: #94a3b8;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(148, 163, 184, 0.22);
}

.cm-filter-dd__option--p0::before { background: #dc2626; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(220, 38, 38, 0.2); }
.cm-filter-dd__option--p1::before { background: #ea580c; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(234, 88, 12, 0.2); }
.cm-filter-dd__option--p2::before { background: #ca8a04; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(202, 138, 4, 0.2); }
.cm-filter-dd__option--p3::before { background: #0284c7; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(2, 132, 199, 0.2); }
.cm-filter-dd__option--draft::before { background: #64748b; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(100, 116, 139, 0.2); }
.cm-filter-dd__option--ready::before { background: #059669; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(5, 150, 105, 0.2); }
.cm-filter-dd__option--deprecated::before { background: #b45309; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(180, 83, 9, 0.2); }
.cm-filter-dd__option--all::before { background: #94a3b8; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(148, 163, 184, 0.2); }
.cm-filter-dd__option--editor::before { background: #059669; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(5, 150, 105, 0.2); }
.cm-filter-dd__option--viewer::before { background: #64748b; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(100, 116, 139, 0.2); }
.cm-filter-dd__option--owner::before { background: #d97706; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(217, 119, 6, 0.2); }

.cm-filter-dd__option-label {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-filter-dd__option-check {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    opacity: 0;
    background: rgba(13, 148, 136, 0.12);
    position: relative;
    transition: opacity 0.12s ease;
}

.cm-filter-dd__option-check::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    width: 0.26rem;
    height: 0.45rem;
    border-right: 1.6px solid #0f766e;
    border-bottom: 1.6px solid #0f766e;
    transform: translate(-50%, -60%) rotate(45deg);
}

.cm-filter-dd__option.is-selected .cm-filter-dd__option-check {
    opacity: 1;
}

.cm-filter-dd__option--rich {
    align-items: flex-start;
    padding: 0.55rem 0.65rem;
}

.cm-filter-dd__option--rich::before {
    margin-top: 0.35rem;
}

.cm-filter-dd__option-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1 1 auto;
}

.cm-filter-dd__option-main {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.25;
    color: inherit;
}

.cm-filter-dd__option-desc {
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.35;
    color: #64748b;
}

.cm-filter-dd__option--rich:hover .cm-filter-dd__option-desc,
.cm-filter-dd__option--rich.is-selected .cm-filter-dd__option-desc {
    color: #0f766e;
}

.cm-filter-dd__option--owner.is-selected { color: #92400e; }
.cm-filter-dd__option--editor.is-selected { color: #065f46; }
.cm-filter-dd__option--viewer.is-selected { color: #334155; }

.cm-filter-dd__option:hover {
    background: rgba(240, 253, 250, 0.95);
    color: #0f766e;
}

.cm-filter-dd__option.is-selected {
    background: linear-gradient(135deg, rgba(204, 251, 241, 0.95), rgba(236, 254, 255, 0.9));
    color: #0f766e;
    box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.35);
}

.cm-filter-dd__option--p0.is-selected { color: #991b1b; }
.cm-filter-dd__option--p1.is-selected { color: #9a3412; }
.cm-filter-dd__option--p2.is-selected { color: #854d0e; }
.cm-filter-dd__option--p3.is-selected { color: #075985; }
.cm-filter-dd__option--draft.is-selected { color: #334155; }
.cm-filter-dd__option--ready.is-selected { color: #065f46; }
.cm-filter-dd__option--deprecated.is-selected { color: #92400e; }

.cm-filter-dd__option--p0.is-selected .cm-filter-dd__option-check { background: rgba(220, 38, 38, 0.12); }
.cm-filter-dd__option--p0.is-selected .cm-filter-dd__option-check::after { border-color: #dc2626; }
.cm-filter-dd__option--p1.is-selected .cm-filter-dd__option-check { background: rgba(234, 88, 12, 0.12); }
.cm-filter-dd__option--p1.is-selected .cm-filter-dd__option-check::after { border-color: #ea580c; }
.cm-filter-dd__option--p2.is-selected .cm-filter-dd__option-check { background: rgba(202, 138, 4, 0.14); }
.cm-filter-dd__option--p2.is-selected .cm-filter-dd__option-check::after { border-color: #ca8a04; }
.cm-filter-dd__option--p3.is-selected .cm-filter-dd__option-check { background: rgba(2, 132, 199, 0.12); }
.cm-filter-dd__option--p3.is-selected .cm-filter-dd__option-check::after { border-color: #0284c7; }
.cm-filter-dd__option--deprecated.is-selected .cm-filter-dd__option-check { background: rgba(180, 83, 9, 0.12); }
.cm-filter-dd__option--deprecated.is-selected .cm-filter-dd__option-check::after { border-color: #b45309; }

.cm-batch-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.9rem;
    margin: 0 14px 8px;
    padding: 0.4rem 0.7rem;
    border-radius: 0.6rem;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(203, 213, 225, 0.9);
    font-size: 0.8125rem;
    color: #475569;
}

.cm-batch-bar__check {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    font-weight: 600;
}

.cm-batch-bar__count {
    margin-left: auto;
    color: #0f766e;
    font-weight: 600;
}

.cm-select-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.85rem;
    margin: 0.55rem 14px 0;
    padding: 0.45rem 0.75rem;
    border-radius: 0.55rem;
    background: rgba(240, 253, 250, 0.92);
    border: 1px solid rgba(153, 246, 228, 0.75);
    font-size: 0.8125rem;
    color: #334155;
}

.cm-select-bar.is-hidden {
    display: none;
}

.cm-select-bar__text {
    font-weight: 650;
    color: #0f766e;
}

.cm-select-bar__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    margin-left: auto;
}

.cm-select-bar__link {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-weight: 650;
    color: #0f766e;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.cm-select-bar__link:hover {
    color: #0d9488;
}

.cm-select-bar__link--muted {
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
}

.cm-select-bar__link--muted:hover {
    color: #334155;
    text-decoration: underline;
}

/* ??? .cm-table th { min-width: 4.5rem }???????????? */
.cm-table th.cm-th-check,
.cm-table td.cm-td-check {
    width: 2rem;
    min-width: 2rem;
    max-width: 2rem;
    padding: 0.4rem 0.2rem;
    text-align: center;
    vertical-align: middle;
}

.cm-check {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

.cm-check-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    margin: 0 auto;
    cursor: pointer;
    vertical-align: middle;
}

.cm-check-wrap__box {
    position: relative;
    box-sizing: border-box;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 0.22rem;
    border: 1.5px solid #94a3b8;
    background: #fff;
    transition: border-color 0.12s, background 0.12s, box-shadow 0.12s;
}

.cm-check-wrap:hover .cm-check-wrap__box {
    border-color: #0d9488;
}

.cm-check:checked + .cm-check-wrap__box {
    border-color: #0f766e;
    background: #0f766e;
}

.cm-check:checked + .cm-check-wrap__box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 45%;
    width: 0.22rem;
    height: 0.42rem;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: translate(-50%, -55%) rotate(40deg);
}

.cm-check:indeterminate + .cm-check-wrap__box {
    border-color: #0f766e;
    background: #0f766e;
}

.cm-check:indeterminate + .cm-check-wrap__box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.4rem;
    height: 1.5px;
    background: #fff;
    border: none;
    transform: translate(-50%, -50%);
}

.cm-check:focus-visible + .cm-check-wrap__box {
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.28);
}

/* ??????? ? ??? + ????? */
.cm-check-wrap.is-page-all .cm-check-wrap__box {
    border-color: #0f766e;
    background: #0f766e;
    box-shadow: none;
}

.cm-check-wrap.is-page-all .cm-check-wrap__box::after,
.cm-check-wrap.is-page-all .cm-check:indeterminate + .cm-check-wrap__box::after,
.cm-check-wrap.is-page-all .cm-check:checked + .cm-check-wrap__box::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.42rem;
    height: 1.5px;
    border: none;
    background: #fff;
    transform: translate(-50%, -50%);
}

/* ??????? ? ??? + ? */
.cm-check-wrap.is-suite-all .cm-check-wrap__box {
    border-color: #0f766e;
    background: #0f766e;
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.22);
}

.cm-check-wrap.is-suite-all .cm-check-wrap__box::after,
.cm-check-wrap.is-suite-all .cm-check:checked + .cm-check-wrap__box::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 45%;
    width: 0.22rem;
    height: 0.42rem;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    background: none;
    transform: translate(-50%, -55%) rotate(40deg);
}

.cm-btn--danger {
    border: 1px solid rgba(220, 38, 38, 0.35);
    background: linear-gradient(180deg, #fff, #fef2f2);
    color: #b91c1c;
    font-weight: 700;
}

.cm-btn--danger:hover:not(:disabled) {
    background: #fee2e2;
    border-color: rgba(185, 28, 28, 0.45);
}

.cm-btn--danger:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.cm-list-hint.is-muted-ok {
    color: #115e59;
    background: rgba(204, 251, 241, 0.55);
}

.cm-case-empty {
    margin: 8px 14px 16px;
    min-height: min(52vh, 28rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-case-empty__card {
    width: min(100%, 26rem);
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    border-radius: 1.15rem;
    border: 1px solid rgba(45, 212, 191, 0.35);
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(204, 251, 241, 0.75), transparent 58%),
        linear-gradient(180deg, rgba(240, 253, 250, 0.96), rgba(255, 255, 255, 0.98));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 14px 36px rgba(15, 118, 110, 0.08);
}

.cm-case-empty__card--project {
    border-color: rgba(20, 184, 166, 0.4);
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(153, 246, 228, 0.55), transparent 55%),
        linear-gradient(165deg, #f0fdfa 0%, #ecfeff 48%, #ffffff 100%);
}

.cm-case-empty__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.85rem;
    border-radius: 0.95rem;
    display: grid;
    place-items: center;
    color: #0f766e;
    background: linear-gradient(145deg, #ccfbf1 0%, #99f6e4 100%);
    box-shadow: 0 8px 18px rgba(13, 148, 136, 0.18);
}

.cm-case-empty__icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.cm-case-empty__title {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #134e4a;
}

.cm-case-empty__desc {
    margin: 0 auto 1.15rem;
    max-width: 22rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5b7c7a;
}

.cm-case-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.cm-case-empty__actions.is-hidden {
    display: none;
}

.cm-table-wrap {
    overflow-x: auto;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 18rem;
    max-height: calc(100vh - 15.5rem);
    max-width: 100%;
}

.cm-table th {
    white-space: nowrap;
    vertical-align: middle;
    min-width: 4.5rem;
}

.cm-table td {
    max-width: 14rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

/* ??? td ?? -webkit-box????????????????/???? */
.cm-table td.cm-td--wide {
    max-width: 18rem;
    min-width: 9rem;
    white-space: normal;
    vertical-align: top;
}

.cm-table td.cm-td--wide .cm-td__clamp {
    /* ?? -webkit-box?? pre-line ????????? */
    display: block;
    max-height: calc(1.4em * 2);
    overflow: hidden;
    word-break: break-word;
    /* ???? / ????????????????? */
    white-space: pre-line;
    line-height: 1.4;
}

.cm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.cm-table th,
.cm-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
}

.cm-table th {
    /* sticky ??????????????????? */
    background: #eefcf9;
    color: #5b7c7a;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 3;
    box-shadow: 0 1px 0 #d8f3ee;
}

.cm-table th.cm-th-check {
    z-index: 4;
    background: #eefcf9;
}

.cm-table tr:hover td {
    background: rgba(236, 254, 255, 0.55);
}

.cm-empty {
    text-align: center;
    color: #94a3b8;
    padding: 28px !important;
}

.cm-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e2e8f0;
}

.cm-badge--P0 { background: #fecaca; color: #991b1b; }
.cm-badge--P1 { background: #fed7aa; color: #9a3412; }
.cm-badge--P2 { background: #fef08a; color: #854d0e; }
.cm-badge--P3 { background: #bae6fd; color: #075985; }

.cm-pager {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #64748b;
}

.cm-drawer-mask,
.cm-modal-mask {
    position: fixed;
    inset: 0;
    /* ???? .hf-gnav(100)??????????(250) */
    z-index: 210;
    background: rgba(15, 23, 42, 0.48);
    /* ?????? backdrop-filter?Firefox ??????/???? 0.5?1s */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.cm-import-loading {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cm-import-loading.is-hidden {
    display: none;
}

.cm-import-loading__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    min-width: 12rem;
    padding: 1.35rem 1.6rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(153, 246, 228, 0.7);
    box-shadow: 0 16px 40px rgba(15, 118, 110, 0.16);
}

.cm-import-loading__spinner {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2.5px solid rgba(13, 148, 136, 0.2);
    border-top-color: #0f766e;
    animation: cm-spin 0.75s linear infinite;
}

.cm-import-loading__text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 650;
    color: #0f766e;
}

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

.cm-btn.is-loading {
    opacity: 0.75;
    pointer-events: none;
    cursor: wait;
}

.cm-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 220;
    width: min(480px, 100%);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(15, 118, 110, 0.14);
    display: flex;
    flex-direction: column;
}

.cm-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.cm-drawer__head-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.cm-drawer__suite {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 15.5rem;
    margin: 0;
}

.cm-drawer__suite-label {
    flex: 0 0 auto;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f766e;
}

.cm-drawer__suite .cm-filter-dd--suite {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.cm-drawer__suite .cm-filter-dd--suite .cm-filter-dd__btn {
    min-height: 2.15rem;
    padding: 0.28rem 0.55rem 0.28rem 0.45rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(45, 212, 191, 0.5);
    background: linear-gradient(180deg, #ffffff, rgba(240, 253, 250, 0.92));
    box-shadow: 0 1px 2px rgba(15, 118, 110, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    color: #134e4a;
}

.cm-drawer__suite .cm-filter-dd--suite .cm-filter-dd__btn:hover {
    border-color: rgba(13, 148, 136, 0.55);
    background: #fff;
}

.cm-drawer__suite .cm-filter-dd--suite.is-open .cm-filter-dd__btn {
    border-color: rgba(13, 148, 136, 0.65);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

.cm-drawer__suite .cm-filter-dd--suite .cm-filter-dd__btn-tone {
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 0.3rem;
    background:
        linear-gradient(180deg, #5eead4 0%, #5eead4 38%, transparent 38%),
        linear-gradient(180deg, #14b8a6, #0f766e);
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.18);
}

.cm-drawer__suite .cm-filter-dd--suite .cm-filter-dd__panel {
    z-index: 60;
    right: 0;
    left: auto;
    width: max(100%, 11rem);
    max-width: 16rem;
    max-height: 14rem;
    overflow-y: auto;
    padding: 0.35rem;
    border-radius: 0.75rem;
    box-shadow: 0 14px 36px rgba(15, 118, 110, 0.16);
}

.cm-drawer__suite .cm-filter-dd--suite .cm-filter-dd__option {
    padding: 0.48rem 0.55rem;
    border-radius: 0.55rem;
    font-size: 0.8125rem;
}

.cm-drawer__suite .cm-filter-dd--suite .cm-filter-dd__option::before {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 0.18rem;
    background:
        linear-gradient(180deg, #99f6e4 0%, #99f6e4 38%, transparent 38%),
        linear-gradient(180deg, #2dd4bf, #0d9488);
}

.cm-drawer__tabs {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.cm-drawer__tabs button {
    border: none;
    background: transparent;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
}

.cm-drawer__tabs button.is-active {
    background: #ecfdf5;
    color: #0f766e;
}

.cm-drawer__body {
    flex: 1;
    overflow: auto;
    padding: 14px 16px 20px;
    min-height: 0;
}

.cm-drawer__foot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(204, 251, 241, 0.9);
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.55), rgba(255, 255, 255, 0.96));
}

.cm-drawer__foot.is-hidden {
    display: none;
}

.cm-drawer__foot-left,
.cm-drawer__foot-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.cm-drawer__foot-right {
    margin-left: auto;
    justify-content: flex-end;
}

.cm-drawer__foot-left .cm-btn {
    min-width: 88px;
}

.cm-drawer__foot-right .cm-btn {
    min-width: 0;
    white-space: nowrap;
}

.cm-l5-foot-extra {
    font-size: 0.75rem;
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-l5-foot-extra:empty {
    display: none;
}

.cm-drawer__actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

/* ?? ??????????? / ???? ?? */
#cm-l5-lineage,
.cm-l5-panel {
    margin: 14px 0 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
}

.cm-l5-lineage,
.cm-l5-ops {
    padding: 0.85rem 0.9rem;
    border: 1px solid rgba(45, 212, 191, 0.28);
    border-radius: 12px;
    background: linear-gradient(165deg, #ffffff 0%, #f0fdfa 70%, #ecfeff 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.cm-l5-panel {
    margin-top: 12px;
}

.cm-l5-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.cm-l5-section__head-main {
    min-width: 0;
}

.cm-l5-section__eyebrow {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d9488;
}

.cm-l5-section__title {
    margin: 0.1rem 0 0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #0f766e;
}

.cm-l5-lineage--exec .cm-l5-section__head {
    margin-bottom: 0.55rem;
}
.cm-l5-lineage--exec .cm-l5-exec-list {
    margin: 0;
}
.cm-l5-lineage--exec .cm-l5-exec-more {
    margin-top: 0.45rem;
}

.cm-l5-meta {
    margin: 0;
    display: grid;
    gap: 10px;
}

.cm-l5-meta__row {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 8px 10px;
    align-items: start;
    padding: 0.55rem 0.6rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(203, 213, 225, 0.7);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.cm-l5-meta__row dt {
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

.cm-l5-meta__row dd {
    margin: 0;
    color: #334155;
    min-width: 0;
    word-break: break-word;
}

.cm-l5-meta__row--note dd {
    grid-column: 1 / -1;
}

.cm-l5-meta__source {
    font-weight: 600;
    color: #0f766e;
}

.cm-l5-meta__ref {
    display: inline-block;
    max-width: 100%;
    vertical-align: bottom;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(241, 245, 249, 0.95);
    color: #475569;
    font-size: 0.72rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.cm-l5-meta__hint {
    color: #64748b !important;
    font-size: 0.75rem !important;
}

.cm-l5-muted {
    color: #94a3b8;
    font-size: 0.78rem;
}

.cm-l5-chip-list,
.cm-l5-exec-list,
.cm-l5-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 4px;
}

.cm-l5-chip-list li,
.cm-l5-exec-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.cm-l5-chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(204, 251, 241, 0.65);
    color: #0f766e;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
}

.cm-l5-chip:hover {
    background: rgba(153, 246, 228, 0.85);
}

.cm-l5-chip__status {
    color: #64748b;
    font-size: 0.72rem;
}

.cm-l5-status {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.cm-l5-status--open {
    background: #ffedd5;
    color: #c2410c;
}

.cm-l5-status--confirmed {
    background: #dbeafe;
    color: #1d4ed8;
}

.cm-l5-status--in_progress {
    background: #e0e7ff;
    color: #4338ca;
}

.cm-l5-status--resolved {
    background: #dcfce7;
    color: #15803d;
}

.cm-l5-status--closed {
    background: #e2e8f0;
    color: #475569;
}

.cm-l5-status--rejected,
.cm-l5-status--unknown {
    background: #f1f5f9;
    color: #334155;
}

.cm-l5-exec-list__result {
    color: #0f766e;
    font-weight: 600;
}

.cm-l5-exec-more {
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: none;
    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cm-l5-exec-more:hover {
    color: #0d9488;
}

.cm-modal-mask--over-drawer {
    z-index: 240;
}

.cm-modal--l5-exec {
    z-index: 250;
    width: min(480px, 92vw);
    max-height: min(72vh, 640px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 0;
}

.cm-l5-exec-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 4px 16px 12px;
}

.cm-l5-exec-pager {
    flex-shrink: 0;
    justify-content: center;
    border-top: 1px solid rgba(45, 212, 191, 0.22);
    background: rgba(255, 255, 255, 0.92);
}

.cm-l5-exec-pager .cm-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.cm-l5-exec-modal-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.cm-l5-exec-modal-list > li {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(240, 253, 250, 0.7);
    border: 1px solid rgba(45, 212, 191, 0.22);
}

.cm-l5-exec-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cm-l5-exec-item__result {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.cm-l5-exec-item__result--pass {
    background: #dcfce7;
    color: #15803d;
}

.cm-l5-exec-item__result--fail {
    background: #fee2e2;
    color: #b91c1c;
}

.cm-l5-exec-item__result--blocked {
    background: #ffedd5;
    color: #c2410c;
}

.cm-l5-exec-item__result--skip {
    background: #e2e8f0;
    color: #475569;
}

.cm-l5-exec-item__time {
    color: #64748b;
    font-size: 0.75rem;
}

.cm-l5-exec-item__comment {
    margin-top: 4px;
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.45;
    word-break: break-word;
}

.cm-modal--l5-exec .cm-modal__actions {
    flex-shrink: 0;
    padding: 8px 16px 16px;
}

.cm-l5-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.cm-l5-actions .cm-btn {
    width: 100%;
}

.cm-l5-block--compact {
    margin: 0 0 8px;
}

.cm-l5-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
}

.cm-l5-note {
    margin: 8px 0 0;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.4;
}

.cm-l5-link {
    font-size: 0.8125rem;
    color: #0f766e;
}

.cm-l5-pre {
    max-height: 220px;
    overflow: auto;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.04);
    padding: 8px;
    border-radius: 8px;
}

.cm-l5-panel.is-hidden,
.cm-l5-lineage.is-hidden {
    display: none !important;
}

/* ???????? / ?????????????? */
.cm-field-row--drawer-selects {
    align-items: end;
}

.cm-field-row--drawer-selects .cm-field {
    min-width: 0;
}

.cm-field-row--drawer-selects .cm-filter-dd {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
}

.cm-field-row--drawer-selects .cm-filter-dd__btn {
    min-height: 2.55rem;
    padding: 0.45rem 0.7rem 0.45rem 0.55rem;
    border-radius: 0.8rem;
    font-size: 0.875rem;
    background: linear-gradient(180deg, #ffffff, rgba(240, 253, 250, 0.92));
    box-shadow: 0 1px 2px rgba(15, 118, 110, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cm-field-row--drawer-selects .cm-filter-dd__btn-tone {
    width: 0.7rem;
    height: 0.7rem;
}

.cm-field-row--drawer-selects .cm-filter-dd__panel {
    z-index: 60;
    width: 100%;
    max-width: none;
    max-height: 14rem;
    overflow-y: auto;
}

.cm-drawer-extra-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cm-drawer-extra-fields .cm-field > span {
    font-weight: 700;
    color: #0f766e;
}

.cm-drawer-extra-fields .cm-textarea {
    min-height: 5.5rem;
    white-space: pre-wrap;
    line-height: 1.45;
}

.cm-exec-form {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(45, 212, 191, 0.32);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 250, 0.72) 100%);
}

.cm-exec-form__result {
    display: grid;
    gap: 8px;
}

.cm-exec-form__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f766e;
}

.cm-exec-form__chips {
    width: 100%;
}

.cm-exec-form__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.cm-exec-form__row .cm-input {
    min-height: 2.45rem;
    border-radius: 12px;
    border-color: rgba(45, 212, 191, 0.4);
}

.cm-exec-form__row .cm-btn--primary {
    min-height: 2.45rem;
    white-space: nowrap;
}

.cm-exec-history {
    margin-top: 0.15rem;
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.cm-exec-history__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(240, 253, 250, 0.55);
}

.cm-exec-history__title {
    font-size: 0.74rem;
    font-weight: 700;
    color: #0f766e;
    letter-spacing: 0.02em;
}

.cm-exec-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cm-exec-list li {
    padding: 0.55rem 0.75rem;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 0;
    font-size: 0.82rem;
    background: transparent;
}

.cm-exec-list li:last-child {
    border-bottom: 0;
}

.cm-exec-list li.cm-empty {
    text-align: center;
    color: #94a3b8;
    border-style: none;
    background: transparent;
    padding: 1.25rem 0.75rem;
}

.cm-exec-list__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0;
}

.cm-exec-list__main {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.cm-exec-list__actor {
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-exec-badge {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.45;
}

.cm-exec-badge--pass {
    color: #047857;
    background: #d1fae5;
}

.cm-exec-badge--fail {
    color: #b91c1c;
    background: #fee2e2;
}

.cm-exec-badge--blocked {
    color: #b45309;
    background: #fef3c7;
}

.cm-exec-badge--skip {
    color: #475569;
    background: #e2e8f0;
}

.cm-exec-list__time {
    flex: 0 0 auto;
    color: #94a3b8;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.cm-exec-list__comment {
    margin: 0.28rem 0 0 0.15rem;
    padding-left: 0.15rem;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.4;
    word-break: break-word;
}

.cm-exec-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.45rem 0.65rem;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(248, 250, 252, 0.65);
}

.cm-exec-pager.is-hidden {
    display: none !important;
}

.cm-exec-pager__info {
    font-size: 0.72rem;
    color: #64748b;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.cm-modal {
    position: fixed;
    z-index: 220;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(560px, 92vw);
    max-height: 80vh;
    overflow: auto;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 253, 250, 0.98) 100%);
    border: 1px solid rgba(45, 212, 191, 0.35);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 24px 60px -18px rgba(15, 118, 110, 0.28);
    padding-bottom: 16px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.cm-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 8px;
}

.cm-modal__eyebrow {
    margin: 0 0 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 118, 110, 0.65);
}

.cm-modal__head strong {
    display: block;
    font-size: 1.05rem;
    color: #134e4a;
}

.cm-hint {
    margin: 0 16px 10px;
    color: #5b7c7a;
    font-size: 0.85rem;
}

.cm-modal--import-suite {
    max-width: 28rem;
    overflow: visible;
}

#cm-import-suite-mask,
#cm-export-suite-mask {
    z-index: 225;
}

.cm-import-suite-empty {
    margin: 0 16px 14px;
    padding: 1rem 1.05rem;
    border-radius: 0.85rem;
    border: 1px dashed rgba(45, 212, 191, 0.55);
    background: rgba(240, 253, 250, 0.7);
    text-align: center;
}

.cm-import-suite-empty p {
    margin: 0 0 0.85rem;
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.5;
}

.cm-import-suite-form {
    padding: 0 16px 4px;
}

.cm-import-suite-form .cm-field {
    margin-bottom: 0.35rem;
}

.cm-import-suite-form .cm-field > span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f766e;
}

.cm-import-suite-form .cm-filter-dd--suite {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
}

.cm-import-suite-form .cm-filter-dd--suite .cm-filter-dd__btn {
    min-height: 2.65rem;
    padding: 0.5rem 0.75rem 0.5rem 0.7rem;
    border-radius: 0.8rem;
    border-color: rgba(45, 212, 191, 0.5);
    background: linear-gradient(180deg, #ffffff, rgba(240, 253, 250, 0.92));
    font-size: 0.875rem;
    box-shadow: 0 1px 2px rgba(15, 118, 110, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cm-import-suite-form .cm-filter-dd--suite .cm-filter-dd__btn-tone {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 0.35rem;
    background:
        linear-gradient(180deg, #5eead4 0%, #5eead4 38%, transparent 38%),
        linear-gradient(180deg, #14b8a6, #0f766e);
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.18);
}

.cm-import-suite-form .cm-filter-dd--suite .cm-filter-dd__panel {
    z-index: 50;
    width: 100%;
    max-width: none;
    max-height: 14rem;
    overflow-y: auto;
    padding: 0.4rem;
    border-radius: 0.85rem;
    box-shadow: 0 16px 40px rgba(15, 118, 110, 0.16);
}

.cm-import-suite-form .cm-filter-dd--suite .cm-filter-dd__option {
    padding: 0.55rem 0.65rem;
    border-radius: 0.6rem;
    font-size: 0.875rem;
}

.cm-import-suite-form .cm-filter-dd--suite .cm-filter-dd__option::before {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.2rem;
    background:
        linear-gradient(180deg, #99f6e4 0%, #99f6e4 38%, transparent 38%),
        linear-gradient(180deg, #2dd4bf, #0d9488);
}

.cm-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 16px 16px;
}

.cm-schema-define-list {
    margin: 0 16px 12px;
    padding: 0.75rem 1rem;
    list-style: disc inside;
    border-radius: 0.85rem;
    border: 1px solid rgba(153, 246, 228, 0.7);
    background: rgba(240, 253, 250, 0.65);
    color: #134e4a;
    font-size: 0.875rem;
    line-height: 1.7;
    max-height: 14rem;
    overflow: auto;
}

.cm-modal--schema-map {
    max-width: 34rem;
    overflow: visible;
}

.cm-schema-map-rows {
    padding: 0 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-height: 18rem;
    overflow: auto;
}

.cm-schema-map-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 0.55rem;
    align-items: center;
}

.cm-schema-map-row__src {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#cm-schema-define-mask,
#cm-schema-map-mask {
    z-index: 230;
}

.cm-wb-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(167, 243, 208, 0.55);
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.cm-wb-item strong {
    display: block;
    font-size: 0.9rem;
    color: #134e4a;
}

.cm-wb-item span {
    font-size: 0.75rem;
    color: #5b7c7a;
}

/* ?? ?????????? Tab ?? */
.cm-modal--wb-import {
    width: min(42rem, calc(100vw - 2rem));
    max-width: 42rem;
    max-height: min(84vh, 46rem);
    display: flex;
    flex-direction: column;
}
.cm-modal--wb-import .cm-modal__head,
.cm-modal--wb-import .cm-hint,
.cm-wb-toolbar {
    flex: 0 0 auto;
}
.cm-wb-toolbar {
    margin: 0 16px 8px;
}
.cm-wb-search {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    margin: 0;
}
.cm-wb-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.cm-wb-search__input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(45, 212, 191, 0.35);
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    font: inherit;
    font-size: 0.875rem;
    color: #134e4a;
    background: rgba(255, 255, 255, 0.92);
}
.cm-wb-search__input:focus {
    outline: none;
    border-color: rgba(13, 148, 136, 0.55);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}
.cm-wb-doc-tabs {
    flex: 0 0 auto;
    display: flex;
    gap: 0.35rem;
    margin: 0 12px 8px;
    padding: 0.2rem 4px 0.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}
.cm-wb-doc-tabs.is-hidden {
    display: none !important;
}
.cm-wb-doc-tab {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.78);
    color: #475569;
    margin: 0;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 12.5rem;
    flex: 0 0 auto;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cm-wb-doc-tab:hover {
    border-color: rgba(13, 148, 136, 0.4);
    color: #0f766e;
}
.cm-wb-doc-tab.is-active {
    border-color: rgba(13, 148, 136, 0.55);
    background: linear-gradient(180deg, rgba(204, 251, 241, 0.95), rgba(240, 253, 250, 0.9));
    color: #0f766e;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.cm-wb-doc-tab.is-hidden {
    display: none !important;
}
.cm-wb-doc-tab__label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 650;
}
.cm-wb-doc-tab__meta {
    flex: 0 0 auto;
    font-size: 0.68rem;
    font-weight: 650;
    color: #64748b;
    padding: 0.08rem 0.35rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.14);
}
.cm-wb-doc-tab.is-active .cm-wb-doc-tab__meta {
    color: #0f766e;
    background: rgba(13, 148, 136, 0.12);
}
.cm-wb-list {
    flex: 1 1 auto;
    overflow: auto;
    margin: 0 10px 14px;
    padding: 0 6px 4px;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 12rem;
}
.cm-wb-empty {
    margin: 0.5rem 0.25rem;
    padding: 1.35rem 1rem;
    text-align: center;
    border-radius: 12px;
    border: 1px dashed rgba(45, 212, 191, 0.45);
    background: rgba(240, 253, 250, 0.55);
    color: #5b7c7a;
    font-size: 0.875rem;
}
.cm-wb-pane {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-width: 0;
}
.cm-wb-pane.is-hidden {
    display: none !important;
}
.cm-wb-doc__pages {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.cm-modal--wb-import .cm-wb-item {
    margin: 0;
    border-color: rgba(148, 163, 184, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.65rem 0.75rem;
}
.cm-modal--wb-import .cm-wb-item.is-hidden {
    display: none !important;
}
.cm-modal--wb-import .cm-wb-item__main {
    min-width: 0;
    flex: 1 1 auto;
}
.cm-modal--wb-import .cm-wb-item strong {
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 650;
}
.cm-modal--wb-import .cm-wb-item span {
    display: block;
    margin-top: 0.18rem;
    color: #64748b;
    font-size: 0.72rem;
}

/* ?? ????????? ?? */
.cm-dialog-mask {
    position: fixed;
    inset: 0;
    /* ???????/??????250/260???? prompt ???? */
    z-index: 280;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(45, 212, 191, 0.12), transparent 60%),
        rgba(15, 51, 48, 0.38);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.cm-dialog {
    position: relative;
    width: min(420px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(45, 212, 191, 0.38);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 253, 250, 0.95) 55%, rgba(236, 254, 255, 0.92) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 28px 64px -20px rgba(15, 118, 110, 0.35);
    overflow: hidden;
    padding: 20px 20px 16px;
}

.cm-dialog__glow {
    position: absolute;
    top: -40%;
    left: 20%;
    width: 60%;
    height: 70%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(153, 246, 228, 0.45), transparent 68%);
    filter: blur(20px);
}

.cm-dialog__head,
.cm-dialog__body,
.cm-dialog__actions {
    position: relative;
    z-index: 1;
}

.cm-dialog__eyebrow {
    margin: 0 0 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(15, 118, 110, 0.62);
}

.cm-dialog__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: #134e4a;
}

.cm-dialog__desc {
    margin: 8px 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5b7c7a;
}

.cm-dialog__body {
    margin-top: 16px;
}

.cm-dialog__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f766e;
}

.cm-dialog__input {
    border: 1px solid rgba(45, 212, 191, 0.45);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 0.925rem;
    color: #134e4a;
    background: rgba(255, 255, 255, 0.88);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.cm-dialog__input:focus {
    border-color: rgba(13, 148, 136, 0.7);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.22);
}

.cm-dialog__error {
    margin: 10px 0 0;
    font-size: 0.8rem;
    color: #b91c1c;
}

.cm-dialog__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cm-dialog--danger #cm-dialog-ok {
    background: #0f766e;
    border-color: #0f766e;
}

.cm-dialog--danger.cm-dialog--confirm #cm-dialog-ok {
    background: #dc2626;
    border-color: #dc2626;
}

.cm-dialog--danger.cm-dialog--confirm #cm-dialog-ok:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* ??????????????? */
.cm-drawer {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffd 100%);
    border-left: 1px solid rgba(45, 212, 191, 0.28);
}

.cm-drawer__head {
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.95), rgba(255, 255, 255, 0.72));
    border-bottom-color: rgba(204, 251, 241, 0.95);
}

.cm-drawer__head strong {
    color: #134e4a;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    flex: 0 0 auto;
    white-space: nowrap;
}

.cm-drawer__head .cm-icon-btn {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(45, 212, 191, 0.35);
    background: rgba(255, 255, 255, 0.85);
    color: #0f766e;
    font-size: 1.15rem;
    line-height: 1;
}

.cm-drawer__head .cm-icon-btn:hover {
    background: rgba(204, 251, 241, 0.9);
}

.cm-drawer__tabs {
    background: rgba(240, 253, 250, 0.45);
    border-bottom-color: rgba(204, 251, 241, 0.9);
}

.cm-drawer__tabs button:hover {
    background: rgba(236, 253, 245, 0.9);
    color: #0f766e;
}

.cm-drawer .cm-select,
.cm-drawer .cm-input,
.cm-drawer .cm-textarea {
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(255, 255, 255, 0.96);
}

.cm-drawer .cm-select:focus,
.cm-drawer .cm-input:focus,
.cm-drawer .cm-textarea:focus {
    outline: none;
    border-color: rgba(13, 148, 136, 0.55);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

/* ????????? */
.cm-modal--exec-run {
    width: min(420px, calc(100vw - 32px));
    overflow: hidden;
    padding-bottom: 0;
}

.cm-modal--exec-run .cm-modal__head {
    padding: 18px 18px 10px;
}

.cm-modal--exec-run .cm-modal__head strong {
    font-size: 1.12rem;
    letter-spacing: -0.01em;
}

.cm-exec-run__content {
    padding: 0 18px 4px;
}

.cm-exec-run__banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(45, 212, 191, 0.38);
    background:
        linear-gradient(135deg, rgba(204, 251, 241, 0.75) 0%, rgba(255, 255, 255, 0.88) 58%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.cm-exec-run__count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    min-width: 3.25rem;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    box-shadow: 0 6px 14px -6px rgba(15, 118, 110, 0.55);
}

.cm-exec-run__count em {
    font-style: normal;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.cm-exec-run__count small {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.88;
}

.cm-exec-run__summary {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #334155;
    font-weight: 600;
}

.cm-exec-run__form {
    display: grid;
    gap: 14px;
}

.cm-exec-run__field {
    margin-bottom: 0;
}

.cm-exec-run__field > span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f766e;
}

.cm-exec-run__field > span i {
    font-style: normal;
    font-weight: 600;
    color: #94a3b8;
    margin-left: 2px;
}

.cm-exec-run__chips {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.cm-exec-chip {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(255, 255, 255, 0.92);
    color: #475569;
    border-radius: 10px;
    min-height: 2.35rem;
    padding: 0.4rem 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s;
}

.cm-exec-chip:hover {
    border-color: rgba(45, 212, 191, 0.65);
    color: #0f766e;
    background: rgba(240, 253, 250, 0.95);
}

.cm-exec-chip:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.22);
}

.cm-exec-chip.is-active.cm-exec-chip--pass {
    border-color: rgba(16, 185, 129, 0.55);
    background: linear-gradient(180deg, #ecfdf5, #d1fae5);
    color: #047857;
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.12);
}

.cm-exec-chip.is-active.cm-exec-chip--fail {
    border-color: rgba(248, 113, 113, 0.6);
    background: linear-gradient(180deg, #fef2f2, #fee2e2);
    color: #b91c1c;
    box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.12);
}

.cm-exec-chip.is-active.cm-exec-chip--blocked {
    border-color: rgba(251, 191, 36, 0.65);
    background: linear-gradient(180deg, #fffbeb, #fef3c7);
    color: #b45309;
    box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.15);
}

.cm-exec-chip.is-active.cm-exec-chip--skip {
    border-color: rgba(148, 163, 184, 0.7);
    background: linear-gradient(180deg, #f8fafc, #e2e8f0);
    color: #475569;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.cm-exec-run__comment {
    min-height: 2.55rem;
    border-radius: 12px;
    border-color: rgba(45, 212, 191, 0.4);
    background: rgba(255, 255, 255, 0.96);
}

.cm-exec-run__comment:focus {
    outline: none;
    border-color: rgba(13, 148, 136, 0.55);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

.cm-exec-run__actions {
    margin-top: 6px;
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(204, 251, 241, 0.85);
    background: rgba(240, 253, 250, 0.35);
}

.cm-exec-run__actions .cm-btn--primary {
    min-width: 6.5rem;
}

.cm-exec-run__actions .cm-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 420px) {
    .cm-exec-run__chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ???????????????????????????? */
body.cm-overlay-open .cm-page__bg-orb,
body.cm-overlay-open .cm-page__icon,
body.cm-mega-open .cm-page__bg-orb,
body.cm-mega-open .cm-page__icon {
    animation: none !important;
}

body.cm-overlay-open .cm-tree-panel,
body.cm-overlay-open .cm-list-panel,
body.cm-overlay-open .cm-btn--ghost,
body.cm-overlay-open .cm-list-actions .cm-btn--ghost,
body.cm-mega-open .cm-tree-panel,
body.cm-mega-open .cm-list-panel,
body.cm-mega-open .cm-btn--ghost,
body.cm-mega-open .cm-list-actions .cm-btn--ghost {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.cm-overlay-open .cm-workspace,
body.cm-mega-open .cm-workspace {
    contain: layout style;
}

#cm-trash-mask {
    /* ?????????????? */
    transition: none;
}

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

/* ?? L5 ???? / ??????????????? ?? */
.cm-plan-mask {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 51, 48, 0.42);
    backdrop-filter: blur(6px);
}
.cm-plan-mask.is-hidden { display: none !important; }
.cm-plan-modal {
    width: min(920px, 96vw);
    max-height: min(88vh, 740px);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid rgba(45, 212, 191, 0.35);
    background: linear-gradient(180deg, #f7fffc, #ffffff);
    box-shadow: 0 28px 64px -24px rgba(15, 118, 110, 0.35);
    overflow: hidden;
}
.cm-plan-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 1rem 1.1rem 0.75rem;
    border-bottom: 1px solid rgba(45, 212, 191, 0.18);
}
.cm-plan-modal__head-main {
    flex: 0 1 auto;
    min-width: 0;
}
.cm-plan-modal__head-actions {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    margin-top: 0.15rem;
    min-width: 0;
}
.cm-plan-modal__head-actions.is-empty {
    display: none;
}
.cm-plan-modal__head > .cm-icon-btn {
    flex: 0 0 auto;
    margin-top: 0.1rem;
}
.cm-plan-modal__eyebrow {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f766e;
    font-weight: 700;
}
.cm-plan-modal__title {
    margin: 0.2rem 0 0;
    font-size: 1.15rem;
    color: #0f172a;
}
.cm-plan-modal__sub {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
}
.cm-plan-modal__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.cm-plan-modal__toolbar.is-hidden {
    display: none;
}
.cm-plan-modal__toolbar .cm-input {
    min-width: 12rem;
    flex: 1 1 12rem;
}
.cm-plan-modal__body {
    flex: 1 1 auto;
    overflow: auto;
    padding: 0.85rem 1.1rem;
}
.cm-plan-modal__foot {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.75rem 1.1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}
.cm-plan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.cm-plan-table th,
.cm-plan-table td {
    padding: 0.55rem 0.45rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    text-align: left;
    vertical-align: middle;
}
.cm-plan-table th {
    color: #64748b;
    font-weight: 600;
}
.cm-plan-pill {
    display: inline-block;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: #ecfeff;
    color: #0f766e;
    font-size: 0.75rem;
}
.cm-plan-pill--pass { background: #dcfce7; color: #166534; }
.cm-plan-pill--fail { background: #fee2e2; color: #991b1b; }
.cm-plan-pill--blocked { background: #ffedd5; color: #9a3412; }
.cm-plan-pill--skip { background: #f1f5f9; color: #475569; }
.cm-plan-muted { color: #94a3b8; font-size: 0.8125rem; }
.cm-plan-error { color: #be123c; }
.cm-plan-empty {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #64748b;
}
.cm-plan-exec-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.cm-plan-batch-exec {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}
.cm-plan-batch-exec.is-hidden {
    display: none !important;
}

/* ?? ??????????????????????? ?? */
.cm-plan-modal--workbench {
    width: min(1120px, 96vw);
    height: min(88vh, 820px);
    max-height: min(88vh, 820px);
}
.cm-plan-modal--wizard {
    width: min(520px, 94vw);
    max-height: min(80vh, 640px);
}
.cm-plan-wb {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}
.cm-plan-wb__aside {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(240, 253, 250, 0.4);
}
.cm-plan-wb__aside-head {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.cm-plan-wb__aside-head .cm-btn {
    width: 100%;
}
.cm-plan-wb__plan-list {
    flex: 1 1 auto;
    overflow: auto;
    padding: 0.4rem;
}
.cm-plan-wb__plan {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
    margin: 0 0 0.3rem;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    text-align: left;
    color: inherit;
    overflow: hidden;
}
.cm-plan-wb__plan-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    min-width: 0;
    margin: 0;
    padding: 0.55rem 0.45rem 0.55rem 0.65rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}
.cm-plan-wb__plan:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(45, 212, 191, 0.25);
}
.cm-plan-wb__plan.is-active {
    background: #fff;
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 6px 16px -12px rgba(15, 118, 110, 0.45);
}
.cm-plan-wb__plan-del {
    flex: 0 0 auto;
    align-self: center;
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 0.35rem 0 0;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.55;
}
.cm-plan-wb__plan:hover .cm-plan-wb__plan-del,
.cm-plan-wb__plan.is-active .cm-plan-wb__plan-del {
    opacity: 1;
}
.cm-plan-wb__plan-del:hover {
    background: #fee2e2;
    color: #b91c1c;
}
.cm-plan-wb__plan-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    word-break: break-word;
}
.cm-plan-wb__plan-meta {
    font-size: 0.72rem;
    color: #64748b;
}
.cm-plan-wb__main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}
.cm-plan-wb__tabs {
    display: flex;
    gap: 0.25rem;
    padding: 0.55rem 0.85rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.cm-plan-wb__tab {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0.45rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    margin-bottom: -1px;
}
.cm-plan-wb__tab:hover {
    color: #0f766e;
}
.cm-plan-wb__tab.is-active {
    color: #0f766e;
    border-bottom-color: #0f766e;
}
.cm-plan-wb__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    min-width: 0;
}
.cm-plan-wb__sel {
    flex: 0 0 auto;
    font-size: 0.74rem;
    font-weight: 650;
    color: #0f766e;
    white-space: nowrap;
}
.cm-plan-wb__sel[hidden] {
    display: none !important;
}
.cm-plan-stats {
    margin-left: auto;
    flex: 0 1 auto;
    min-width: 0;
    font-size: 0.74rem;
    font-weight: 650;
    color: #0f766e;
    line-height: 1.35;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: rgba(240, 253, 250, 0.95);
    border: 1px solid rgba(45, 212, 191, 0.28);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cm-plan-batch-menu {
    position: relative;
    flex: 0 0 auto;
}
.cm-plan-batch-menu.is-hidden {
    display: none !important;
}
.cm-plan-batch-menu__list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 5;
    min-width: 7.5rem;
    padding: 0.25rem;
    border-radius: 10px;
    border: 1px solid rgba(45, 212, 191, 0.28);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px -12px rgba(15, 118, 110, 0.28);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cm-plan-batch-menu__list[hidden] {
    display: none !important;
}
.cm-plan-batch-menu__list button {
    appearance: none;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.4rem 0.55rem;
    border-radius: 7px;
    font-size: 0.78rem;
    color: #134e4a;
    cursor: pointer;
}
.cm-plan-batch-menu__list button:hover {
    background: rgba(240, 253, 250, 0.95);
}
.cm-plan-wb__content {
    flex: 1 1 auto;
    overflow: auto;
    padding: 0.75rem 0.85rem;
}
.cm-plan-wb__filter {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #64748b;
}
.cm-plan-wb__assignee-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #64748b;
    white-space: nowrap;
}
.cm-plan-wb__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    font-size: 0.8125rem;
    color: #334155;
}
.cm-plan-wb__field .cm-input,
.cm-plan-wb__field .cm-select {
    width: 100%;
}
.cm-select--sm {
    min-height: 1.85rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.78rem;
}
@media (max-width: 820px) {
    .cm-plan-wb {
        flex-direction: column;
    }
    .cm-plan-wb__aside {
        width: 100%;
        max-height: 160px;
        border-right: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }
}

/* ??????????????? */
#cm-plan-pick-mask {
    z-index: 260;
}
#cm-plan-pick-mask .cm-plan-modal {
    width: min(960px, 95vw);
    height: min(80vh, 720px);
    max-height: min(80vh, 720px);
}
.cm-plan-pick-layout {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}
.cm-plan-pick-tree {
    width: 220px;
    flex-shrink: 0;
    overflow: auto;
    padding: 0.5rem 0;
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(240, 253, 250, 0.35);
}
.cm-plan-pick-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}
.cm-plan-pick-cases {
    flex: 1 1 auto;
    overflow: auto;
    padding: 0 0.75rem;
}
.cm-plan-pick-foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}
.cm-plan-pick-empty {
    padding: 1rem;
    color: #94a3b8;
    font-size: 0.8125rem;
}
.cm-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.cm-metrics-card {
    border: 1px solid rgba(45, 212, 191, 0.25);
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    background: rgba(240, 253, 250, 0.65);
}
.cm-metrics-card__label { font-size: 0.72rem; color: #64748b; }
.cm-metrics-card__value {
    margin-top: 0.1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}
.cm-metrics-card__tip {
    margin-top: 0.1rem;
    font-size: 0.68rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cm-metrics-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.75rem;
    margin-bottom: 0.65rem;
}
.cm-metrics-section { margin-top: 0; }
.cm-metrics-section--trend { margin-top: 0.35rem; }
.cm-metrics-trend__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}
.cm-metrics-trend__head h3 { margin: 0; }
.cm-metrics-trend__count {
    font-size: 0.72rem;
    color: #94a3b8;
}
.cm-metrics-trend-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.cm-metrics-trend-list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    background: rgba(255, 255, 255, 0.88);
}
.cm-metrics-trend-item__date {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    min-width: 5.5rem;
}
.cm-metrics-trend-item__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.cm-metrics-trend-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 0.72rem;
    color: #64748b;
}
.cm-metrics-trend-stat em {
    font-style: normal;
}
.cm-metrics-trend-stat strong {
    color: #0f172a;
    font-size: 0.78rem;
}
.cm-metrics-trend-stat--pass {
    background: #dcfce7;
    color: #15803d;
}
.cm-metrics-trend-stat--pass strong { color: #15803d; }
.cm-metrics-trend-stat--fail {
    background: #fee2e2;
    color: #b91c1c;
}
.cm-metrics-trend-stat--fail strong { color: #b91c1c; }
.cm-metrics-trend-pager {
    justify-content: center;
    margin-top: 0.35rem;
    padding: 6px 0 0;
    border-top: 0;
}
.cm-metrics-trend-pager .cm-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.cm-metrics-section h3 {
    margin: 0 0 0.3rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}
.cm-metrics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border: 0;
    border-radius: 0;
    overflow: visible;
}
.cm-metrics-list li {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: #fff;
    font-size: 0.75rem;
    color: #64748b;
}
.cm-metrics-list li strong {
    color: #0f172a;
    font-size: 0.8125rem;
}
.cm-metrics-list li:last-child { border-bottom: 1px solid rgba(148, 163, 184, 0.22); }

@media (max-width: 720px) {
    .cm-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cm-metrics-sections {
        grid-template-columns: 1fr;
    }
}

/* L5 Ops modal */
.cm-plan-modal--ops {
    width: min(1040px, 96vw);
    max-height: min(90vh, 820px);
}
.cm-plan-modal--settings {
    width: min(560px, 94vw);
    max-height: min(80vh, 520px);
}
.cm-l5ops-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem 0;
}
.cm-l5ops-tabs .cm-btn.is-active {
    background: rgba(15, 118, 110, 0.12);
    color: #0f766e;
    border-color: rgba(45, 212, 191, 0.45);
}
.cm-l5ops-audit-pager {
    justify-content: center;
    margin-top: 0.5rem;
    padding: 8px 0 0;
    border-top: 0;
}
.cm-l5ops-audit-pager .cm-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.cm-l5ops-settings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 520px;
    padding: 0.2rem 0;
}
.cm-l5ops-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: opacity 0.15s ease, border-color 0.15s ease;
}
.cm-l5ops-toggle:hover {
    border-color: rgba(15, 118, 110, 0.35);
}
.cm-l5ops-toggle.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.cm-l5ops-toggle__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.cm-l5ops-toggle__text strong {
    font-size: 0.86rem;
    font-weight: 650;
    color: #0f172a;
}
.cm-l5ops-toggle__text em {
    font-style: normal;
    font-size: 0.74rem;
    line-height: 1.45;
    color: #64748b;
    max-width: 26rem;
}
.cm-l5ops-toggle input[type="checkbox"] {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    accent-color: #0f766e;
    cursor: pointer;
}
.cm-l5ops-toggle.is-disabled input[type="checkbox"] {
    cursor: not-allowed;
}
.cm-l5ops-board-meta {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    color: #64748b;
}
.cm-l5ops-board-meta strong {
    color: #0f172a;
}
.cm-l5ops-board-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.cm-l5ops-board-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    background: rgba(255, 255, 255, 0.92);
}
.cm-l5ops-board-item__title {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.35;
}
.cm-l5ops-board-item__title:hover {
    color: #0f766e;
}
.cm-l5ops-board-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.cm-l5ops-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
}
.cm-l5ops-badge--muted {
    background: #f1f5f9;
    color: #64748b;
}
.cm-l5ops-badge--ready,
.cm-l5ops-badge--pass,
.cm-l5ops-badge--plan {
    background: #dcfce7;
    color: #15803d;
}
.cm-l5ops-badge--draft {
    background: #e0e7ff;
    color: #4338ca;
}
.cm-l5ops-badge--deprecated,
.cm-l5ops-badge--skip {
    background: #e2e8f0;
    color: #475569;
}
.cm-l5ops-badge--fail {
    background: #fee2e2;
    color: #b91c1c;
}
.cm-l5ops-badge--blocked {
    background: #ffedd5;
    color: #c2410c;
}
.cm-l5ops-badge--defect {
    background: #ccfbf1;
    color: #0f766e;
}
.cm-l5-pre {
    margin: 0.6rem 0 0;
    padding: 0.75rem;
    max-height: 280px;
    overflow: auto;
    font-size: 0.75rem;
    line-height: 1.45;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #f8fafc;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ???????????????? */
.cm-trash-fab {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 120;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border: 1px solid rgba(13, 148, 136, 0.42);
    border-radius: 999px;
    color: #0f766e;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(204, 251, 241, 0.92) 55%, rgba(167, 243, 208, 0.88) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 28px -10px rgba(15, 118, 110, 0.45),
        0 0 0 0 rgba(45, 212, 191, 0.35);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    animation: cm-trash-fab-breathe 2.8s ease-in-out infinite;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cm-trash-fab.is-hidden {
    display: none !important;
}

.cm-trash-fab__glow {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.28) 0%, transparent 68%);
    pointer-events: none;
    animation: cm-trash-fab-glow 2.8s ease-in-out infinite;
}

.cm-trash-fab__icon {
    position: relative;
    z-index: 1;
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.cm-trash-fab:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(13, 148, 136, 0.65);
    color: #0d9488;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 14px 32px -10px rgba(15, 118, 110, 0.5),
        0 0 0 4px rgba(45, 212, 191, 0.18);
    animation-play-state: paused;
}

.cm-trash-fab:hover .cm-trash-fab__glow {
    animation-play-state: paused;
    opacity: 0.85;
}

.cm-trash-fab:active {
    transform: translateY(0) scale(0.98);
}

body.cm-page.cm-overlay-open .cm-trash-fab,
body.cm-page.cm-drawer-open .cm-trash-fab {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

@keyframes cm-trash-fab-breathe {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.9) inset,
            0 10px 28px -10px rgba(15, 118, 110, 0.42),
            0 0 0 0 rgba(45, 212, 191, 0.28);
    }
    50% {
        transform: translateY(-3px) scale(1.06);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.95) inset,
            0 16px 34px -10px rgba(15, 118, 110, 0.52),
            0 0 0 8px rgba(45, 212, 191, 0.14);
    }
}

@keyframes cm-trash-fab-glow {
    0%, 100% { opacity: 0.45; transform: scale(0.92); }
    50% { opacity: 0.9; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .cm-trash-fab,
    .cm-trash-fab__glow {
        animation: none !important;
    }
}

@media (max-width: 720px) {
    .cm-trash-fab {
        right: 0.65rem;
        bottom: 0.65rem;
        width: 3rem;
        height: 3rem;
    }
}

/* ---- 计划门禁弹窗（独立样式，不影响既有计划/工具栏） ---- */
/* 高于计划工作台(250)/选用例(260)，低于通用确认框(280) */
#cm-gate-mask {
  z-index: 270;
}
.cm-modal--gate {
  width: min(40rem, 94vw);
  max-height: min(86vh, 44rem);
  display: flex;
  flex-direction: column;
}
.cm-gate-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0.35rem 1.15rem 0.85rem;
}
.cm-gate-section {
  margin: 0 0 0.95rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: rgba(240, 253, 250, 0.45);
}
.cm-gate-section h3 {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #134e4a;
}
.cm-gate-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin-bottom: 0.7rem;
}
.cm-gate-status__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.cm-gate-status.is-pass .cm-gate-status__badge {
  color: #065f46;
  background: rgba(167, 243, 208, 0.75);
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.cm-gate-status.is-fail .cm-gate-status__badge {
  color: #991b1b;
  background: rgba(254, 226, 226, 0.9);
  border: 1px solid rgba(248, 113, 113, 0.4);
}
.cm-gate-status__release {
  font-size: 0.78rem;
  color: #0f766e;
  font-weight: 600;
}
.cm-gate-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}
.cm-gate-metric {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(153, 246, 228, 0.45);
}
.cm-gate-metric__value {
  font-size: 1rem;
  font-weight: 750;
  color: #0f766e;
  line-height: 1.2;
}
.cm-gate-metric__label {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  color: #5b7c7a;
}
.cm-gate-fail-list {
  margin: 0 0 0.55rem;
  padding-left: 1.1rem;
  color: #b91c1c;
  font-size: 0.8rem;
  line-height: 1.5;
}
.cm-gate-ok-text {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  color: #047857;
}
.cm-gate-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.cm-gate-lock-hint {
  flex: 1 1 100%;
  margin: 0.15rem 0 0;
  color: #b45309;
}
.cm-gate-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.7rem;
  margin-bottom: 0.55rem;
}
.cm-gate-rule {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #334155;
}
.cm-gate-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #334155;
  grid-column: 1 / -1;
}
@media (max-width: 720px) {
  .cm-gate-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cm-gate-rules { grid-template-columns: 1fr; }
}

.cm-gate-sub {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #5b7c7a;
  line-height: 1.4;
}
.cm-modal--gate .cm-modal__actions {
  padding: 0.65rem 1.15rem 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
}
