.td-vip-drawing--ellipse {
    fill: rgba(96, 165, 250, 0.12);
    stroke: rgba(37, 99, 235, 0.88);
    stroke-width: 1.8;
    vector-effect: non-scaling-stroke;
}

.td-vip-drawing--ellipse.is-hovered {
    fill: rgba(125, 211, 252, 0.16);
    stroke: rgba(14, 165, 233, 0.92);
}

.td-vip-drawing--ellipse.is-selected {
    fill: rgba(59, 130, 246, 0.18);
    stroke: rgba(37, 99, 235, 1);
}

.td-vip-drawing--ellipse.is-draft {
    fill: rgba(96, 165, 250, 0.1);
    stroke-dasharray: 6 4;
}

.td-vip-drawing--text-callout .td-vip-drawing-text-bg {
    fill: rgba(255, 251, 235, 0.98);
    stroke: rgba(245, 158, 11, 0.88);
}

.td-vip-drawing--text-callout .td-vip-drawing-text-label {
    fill: #92400e;
    font-weight: 700;
}

.td-vip-drawing-guide--callout {
    stroke: rgba(245, 158, 11, 0.82);
}

.td-vip-drawing-anchor--callout {
    fill: #f59e0b;
}

.td-vip-drawing--text-price-label .td-vip-drawing-text-bg {
    fill: rgba(15, 23, 42, 0.96);
    stroke: rgba(37, 99, 235, 0.9);
}

.td-vip-drawing--text-price-label .td-vip-drawing-text-label {
    fill: #f8fafc;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.td-vip-drawing-anchor--price-label {
    fill: #2563eb;
}

body.td-vip-body.is-night-mode .td-vip-drawing--ellipse {
    fill: rgba(59, 130, 246, 0.12);
    stroke: rgba(125, 211, 252, 0.9);
}

body.td-vip-body.is-night-mode .td-vip-drawing--ellipse.is-hovered {
    fill: rgba(34, 211, 238, 0.16);
    stroke: rgba(103, 232, 249, 0.92);
}

body.td-vip-body.is-night-mode .td-vip-drawing--ellipse.is-selected {
    fill: rgba(96, 165, 250, 0.2);
    stroke: rgba(147, 197, 253, 1);
}

body.td-vip-body.is-night-mode .td-vip-drawing--text-callout .td-vip-drawing-text-bg {
    fill: rgba(69, 26, 3, 0.94);
    stroke: rgba(251, 191, 36, 0.78);
}

body.td-vip-body.is-night-mode .td-vip-drawing--text-callout .td-vip-drawing-text-label {
    fill: #fcd34d;
}

body.td-vip-body.is-night-mode .td-vip-drawing-guide--callout {
    stroke: rgba(251, 191, 36, 0.74);
}

body.td-vip-body.is-night-mode .td-vip-drawing-anchor--callout {
    fill: #fbbf24;
}

body.td-vip-body.is-night-mode .td-vip-drawing--text-price-label .td-vip-drawing-text-bg {
    fill: rgba(15, 23, 42, 0.98);
    stroke: rgba(96, 165, 250, 0.88);
}

body.td-vip-body.is-night-mode .td-vip-drawing--text-price-label .td-vip-drawing-text-label {
    fill: #e2e8f0;
}

body.td-vip-body.is-night-mode .td-vip-drawing-anchor--price-label {
    fill: #60a5fa;
}

.td-vip-drawing-tool-chip {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

.td-vip-drawing-tool-chip:hover,
.td-vip-drawing-tool-chip:focus-visible {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 12px 24px -20px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
    outline: none;
}

.td-vip-drawing-tool-chip.is-active {
    border-color: rgba(59, 130, 246, 0.48);
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.12);
}

.td-vip-drawing-tool-chip-short {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 10px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.td-vip-drawing-tool-chip-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.td-vip-drawing-tool-chip-copy strong {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

.td-vip-drawing-tool-chip-copy small {
    color: #64748b;
    font-size: 10px;
    line-height: 1.4;
}

.td-vip-drawing-flyout-mode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.96);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.td-vip-drawing-flyout-mode-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.td-vip-drawing-flyout-mode-copy strong {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

.td-vip-drawing-flyout-mode-copy span {
    color: #64748b;
    font-size: 10px;
    line-height: 1.45;
}

.td-vip-drawing-mode-toggle {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(191, 219, 254, 0.95);
    border-radius: 999px;
    background: #ffffff;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.td-vip-drawing-mode-toggle:hover,
.td-vip-drawing-mode-toggle:focus-visible {
    border-color: rgba(96, 165, 250, 0.95);
    color: #1d4ed8;
    outline: none;
}

.td-vip-drawing-mode-toggle.is-active {
    background: #eff6ff;
    border-color: rgba(96, 165, 250, 0.95);
    color: #1d4ed8;
}

.td-vip-drawing-flyout-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.98);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.td-vip-drawing-flyout-section--status {
    gap: 8px;
}

.td-vip-drawing-flyout-section-head {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.td-vip-drawing-flyout-section-head strong {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

.td-vip-drawing-flyout-section-head span {
    font-size: 10px;
    line-height: 1.45;
    color: #64748b;
}

.td-vip-drawing-flyout-section-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.td-vip-drawing-flyout-status,
.td-vip-drawing-flyout-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.td-vip-drawing-flyout-chip {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.98);
    background: #ffffff;
    color: #334155;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}

.td-vip-drawing-flyout-chip:hover,
.td-vip-drawing-flyout-chip:focus-visible {
    border-color: rgba(96, 165, 250, 0.98);
    color: #1d4ed8;
    outline: none;
}

.td-vip-drawing-flyout-chip.is-active {
    background: #eff6ff;
    border-color: rgba(96, 165, 250, 0.98);
    color: #1d4ed8;
}

.td-vip-drawing-flyout-chip.is-muted,
.td-vip-drawing-flyout-chip:disabled {
    border-color: rgba(226, 232, 240, 0.98);
    background: #f8fafc;
    color: #64748b;
    cursor: default;
}

.td-vip-drawing-flyout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.td-vip-drawing-flyout-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.td-vip-drawing-flyout-field.is-compact {
    min-width: 0;
}

.td-vip-drawing-flyout-field-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #64748b;
}

.td-vip-drawing-flyout-input,
.td-vip-drawing-flyout-select,
.td-vip-drawing-flyout-color {
    min-height: 34px;
    border-radius: 10px;
    border: 1px solid #dbe5f1;
    background: #ffffff;
    color: #0f172a;
    font-size: 11px;
    font-weight: 600;
}

.td-vip-drawing-flyout-input,
.td-vip-drawing-flyout-select {
    width: 100%;
    padding: 0 10px;
}

.td-vip-drawing-flyout-input {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.td-vip-drawing-flyout-color {
    width: 100%;
    padding: 4px;
}

.td-vip-drawing-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.td-vip-indicator-zones {
    pointer-events: none;
}

.td-vip-indicator-zone {
    vector-effect: non-scaling-stroke;
    pointer-events: none;
}

.td-vip-indicator-zone.is-retested {
    stroke-dasharray: 7 5;
}

.td-vip-indicator-zone.is-developing {
    stroke-dasharray: 3 4;
}

.td-vip-drawing {
    vector-effect: non-scaling-stroke;
    pointer-events: none;
}

.td-vip-drawing--trendline {
    stroke: rgba(15, 23, 42, 0.72);
    stroke-width: 2.2;
    stroke-linecap: round;
}

.td-vip-drawing--horizontal-line,
.td-vip-drawing--horizontal-ray,
.td-vip-drawing--vertical-line,
.td-vip-drawing--ray,
.td-vip-drawing--extended-line {
    stroke: rgba(37, 99, 235, 0.82);
    stroke-width: 2;
    stroke-linecap: round;
}

.td-vip-drawing--horizontal-ray {
    stroke-dasharray: 4 0;
}

.td-vip-drawing--vertical-line {
    stroke-dasharray: 5 4;
}

.td-vip-drawing--ray {
    stroke-dasharray: 8 3;
}

.td-vip-drawing--extended-line {
    stroke-dasharray: 10 4;
}

.td-vip-drawing--trendline.td-vip-drawing--plan-auto {
    stroke: rgba(139, 92, 246, 0.9);
    stroke-width: 1.85;
    stroke-dasharray: 7 5;
}

body.td-vip-body.is-night-mode .td-vip-drawing--trendline.td-vip-drawing--plan-auto {
    stroke: rgba(196, 181, 253, 0.92);
}

.td-vip-drawing--fib-anchor {
    stroke-linecap: round;
}

.td-vip-drawing--fib-level {
    stroke-linecap: round;
}

.td-vip-drawing--fib-level.is-selected,
.td-vip-drawing--fib-anchor.is-selected {
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.26));
}

.td-vip-drawing--fib-band,
.td-vip-drawing--fib-label-wrap,
.td-vip-drawing--fib-label-bg,
.td-vip-drawing--fib-label {
    pointer-events: none;
}

.td-vip-drawing--fib-label {
    font-size: 10px;
    font-weight: 700;
}

.td-vip-drawing--fib-label-bg {
    stroke-width: 1;
}

.td-vip-drawing--trendline.is-hovered,
.td-vip-drawing--rectangle.is-hovered,
.td-vip-drawing--fib-anchor.is-hovered,
.td-vip-drawing--fib-level.is-hovered,
.td-vip-drawing--text.is-hovered .td-vip-drawing-text-bg {
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.18));
}

.td-vip-drawing--trendline.is-selected,
.td-vip-drawing--rectangle.is-selected,
.td-vip-drawing-guide.is-selected,
.td-vip-drawing-anchor.is-selected {
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.28));
}

.td-vip-drawing--rectangle {
    fill: rgba(56, 189, 248, 0.08);
    stroke: rgba(14, 165, 233, 0.8);
    stroke-width: 1.8;
    rx: 10;
    ry: 10;
}

.td-vip-drawing--parallel-channel-fill {
    fill: rgba(59, 130, 246, 0.06);
    stroke: rgba(59, 130, 246, 0.16);
    stroke-width: 1;
}

.td-vip-drawing--parallel-channel-line {
    stroke: rgba(37, 99, 235, 0.82);
    stroke-width: 2;
    stroke-linecap: round;
}

.td-vip-drawing--parallel-channel-edge {
    stroke: rgba(59, 130, 246, 0.42);
    stroke-width: 1.4;
    stroke-dasharray: 6 4;
}

.td-vip-drawing.is-selected {
    stroke-width: 3;
}

.td-vip-drawing.is-draft {
    stroke-dasharray: 7 5;
    opacity: 0.86;
}

.td-vip-drawing-text-bg {
    fill: rgba(255, 255, 255, 0.96);
    stroke: rgba(148, 163, 184, 0.34);
    stroke-width: 1;
}

.td-vip-drawing-text-bg.is-selected {
    stroke: rgba(14, 165, 233, 0.8);
}

.td-vip-drawing-text-label {
    fill: #0f172a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.td-vip-drawing-anchor {
    fill: #0f172a;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 1.5;
}

.td-vip-drawing-handle {
    fill: rgba(255, 255, 255, 0.95);
    stroke: rgba(14, 165, 233, 0.88);
    stroke-width: 2;
    opacity: 0.92;
}

.td-vip-drawing-handle.is-selected {
    fill: rgba(224, 242, 254, 0.98);
}

.td-vip-drawing-handle.is-hovered {
    fill: #0ea5e9;
    stroke: rgba(255, 255, 255, 0.96);
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.35));
}

.td-vip-drawing-guide {
    stroke: rgba(100, 116, 139, 0.55);
    stroke-width: 1.3;
    stroke-dasharray: 3 4;
}

.td-vip-drawing-focus {
    fill: rgba(56, 189, 248, 0.02);
    stroke: rgba(56, 189, 248, 0.42);
    stroke-width: 1.4;
    stroke-dasharray: 6 5;
    vector-effect: non-scaling-stroke;
}

.td-vip-drawing-focus.is-selected {
    fill: rgba(56, 189, 248, 0.04);
    stroke: rgba(37, 99, 235, 0.58);
    filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.14));
}

.td-vip-drawing-focus.is-hovered {
    stroke: rgba(14, 165, 233, 0.52);
}

.td-vip-drawing-focus.is-dragging {
    fill: rgba(14, 165, 233, 0.05);
    stroke: rgba(14, 165, 233, 0.88);
    stroke-dasharray: 4 4;
    filter: drop-shadow(0 0 16px rgba(14, 165, 233, 0.24));
}

.td-vip-drawing-focus.is-locked {
    fill: rgba(148, 163, 184, 0.03);
    stroke: rgba(148, 163, 184, 0.44);
}

.td-vip-drawing-grip {
    fill: rgba(255, 255, 255, 0.96);
    stroke: rgba(148, 163, 184, 0.34);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.12));
}

.td-vip-drawing-grip-group.is-dragging .td-vip-drawing-grip {
    fill: rgba(15, 23, 42, 0.96);
    stroke: rgba(56, 189, 248, 0.34);
}

.td-vip-drawing-grip-group.is-locked .td-vip-drawing-grip {
    fill: rgba(248, 250, 252, 0.98);
    stroke: rgba(148, 163, 184, 0.42);
}

.td-vip-drawing-grip-dot {
    fill: rgba(71, 85, 105, 0.72);
}

.td-vip-drawing-grip-group.is-dragging .td-vip-drawing-grip-dot {
    fill: rgba(226, 232, 240, 0.82);
}

.td-vip-drawing-grip-label {
    fill: #475569;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.td-vip-drawing-grip-group.is-dragging .td-vip-drawing-grip-label {
    fill: rgba(241, 245, 249, 0.94);
}

.td-vip-drawing-quickbar,
.td-vip-drawing-context-menu {
    position: absolute;
    z-index: 22;
    border: 1px solid rgba(203, 213, 225, 0.92);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 38px -28px rgba(15, 23, 42, 0.34);
}

.td-vip-drawing-quickbar.is-hidden,
.td-vip-drawing-context-menu.is-hidden {
    display: none;
}

.td-vip-drawing-quickbar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
}

.td-vip-drawing-quickbar-btn {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(203, 213, 225, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96));
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.td-vip-drawing-quickbar-btn.is-primary {
    border-color: rgba(125, 211, 252, 0.95);
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(224, 242, 254, 0.96));
    color: #0369a1;
}

.td-vip-drawing-quickbar-btn.is-danger {
    border-color: rgba(254, 202, 202, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(254, 242, 242, 0.98));
    color: #b91c1c;
}

.td-vip-drawing-context-menu {
    display: grid;
    gap: 4px;
    min-width: 148px;
    padding: 8px;
    border-radius: 14px;
}

.td-vip-drawing-context-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: transparent;
    color: #334155;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.td-vip-drawing-context-action:hover,
.td-vip-drawing-context-action:focus-visible,
.td-vip-drawing-quickbar-btn:hover,
.td-vip-drawing-quickbar-btn:focus-visible {
    border-color: rgba(96, 165, 250, 0.88);
    color: #1d4ed8;
    outline: none;
}

.td-vip-drawing-context-action.is-danger {
    color: #b91c1c;
}

body.td-vip-body.is-night-mode .td-vip-drawing-quickbar,
body.td-vip-body.is-night-mode .td-vip-drawing-context-menu {
    border-color: rgba(51, 65, 85, 0.92);
    background: rgba(8, 15, 26, 0.96);
    box-shadow: 0 24px 40px -28px rgba(2, 6, 23, 0.68);
}

body.td-vip-body.is-night-mode .td-vip-drawing-quickbar-btn,
body.td-vip-body.is-night-mode .td-vip-drawing-context-action {
    border-color: rgba(51, 65, 85, 0.92);
    background: rgba(15, 23, 42, 0.92);
    color: rgba(226, 232, 240, 0.92);
}

body.td-vip-body.is-night-mode .td-vip-drawing-quickbar-btn.is-primary {
    border-color: rgba(56, 189, 248, 0.38);
    background: rgba(8, 47, 73, 0.92);
    color: #7dd3fc;
}

body.td-vip-body.is-night-mode .td-vip-drawing-quickbar-btn.is-danger,
body.td-vip-body.is-night-mode .td-vip-drawing-context-action.is-danger {
    color: #fca5a5;
}

.td-vip-drawing-group {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(203, 213, 225, 0.7);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.94));
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.td-vip-drawing-group.is-drop-target {
    border-color: rgba(14, 165, 233, 0.62);
    box-shadow: 0 18px 28px -24px rgba(14, 165, 233, 0.3);
}

.td-vip-drawing-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 2px;
}

.td-vip-drawing-group-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.td-vip-drawing-group-head strong,
.td-vip-drawing-group-toggle strong {
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.td-vip-drawing-group-head span,
.td-vip-drawing-group-toggle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.92);
    color: #526174;
    font-size: 11px;
    font-weight: 700;
}

.td-vip-drawing-group-caret {
    min-width: 22px;
    width: 22px;
    height: 22px;
    padding: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.86);
    color: #475569;
    font-size: 12px;
    line-height: 1;
}

.td-vip-drawing-group-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.td-vip-drawing-group-action {
    min-width: 48px;
    height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(203, 213, 225, 0.86);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.98));
    color: #526174;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
}

.td-vip-drawing-group-body {
    display: grid;
    gap: 8px;
}

.td-vip-drawing-group.is-collapsed .td-vip-drawing-group-body {
    display: none;
}

.td-vip-drawing-empty {
    padding: 16px 12px;
    border: 1px dashed rgba(191, 205, 221, 0.86);
    border-radius: 14px;
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
}

.td-vip-drawing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(203, 213, 225, 0.76);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.96)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(148, 163, 184, 0.04));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 16px 28px -28px rgba(15, 23, 42, 0.24);
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.td-vip-drawing-row:hover {
    transform: translateY(-1px);
    border-color: rgba(148, 163, 184, 0.56);
}

.td-vip-drawing-row.is-hovered {
    border-color: rgba(125, 211, 252, 0.6);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 18px 30px -28px rgba(14, 165, 233, 0.24);
}

.td-vip-drawing-row.is-selected {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 20px 34px -28px rgba(14, 165, 233, 0.28);
}

.td-vip-drawing-row.is-drop-target {
    border-color: rgba(14, 165, 233, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 18px 30px -24px rgba(14, 165, 233, 0.24);
}

.td-vip-drawing-row.is-hidden {
    opacity: 0.68;
}

.td-vip-drawing-row.is-plan-auto-row {
    cursor: default;
    border-left: 3px solid rgba(14, 165, 233, 0.42);
    background:
        linear-gradient(90deg, rgba(14, 165, 233, 0.07), transparent 42%),
        linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(241, 245, 249, 0.94));
}

body.td-vip-body.is-night-mode .td-vip-drawing-row.is-plan-auto-row {
    border-left-color: rgba(56, 189, 248, 0.48);
    background:
        linear-gradient(90deg, rgba(56, 189, 248, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(10, 18, 30, 0.98), rgba(6, 12, 22, 0.96));
}

.td-vip-drawing-row.is-list-dragging {
    opacity: 0.44;
}

.td-vip-drawing-row.is-dragging {
    border-color: rgba(14, 165, 233, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 22px 36px -28px rgba(14, 165, 233, 0.34);
}

.td-vip-drawing-row.is-locked {
    background:
        linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(239, 244, 249, 0.96)),
        linear-gradient(135deg, rgba(148, 163, 184, 0.14), rgba(255, 255, 255, 0.04));
}

.td-vip-drawing-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.td-vip-drawing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92)),
        linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(34, 197, 94, 0.1));
    color: #f8fafc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 22px -18px rgba(15, 23, 42, 0.4);
}

.td-vip-drawing-text {
    min-width: 0;
}

.td-vip-drawing-text strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.td-vip-drawing-text span {
    display: block;
    margin-top: 4px;
    color: #7c8ca0;
    font-size: 11px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.td-vip-drawing-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.td-vip-drawing-action {
    min-width: 52px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(203, 213, 225, 0.88);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.98));
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
}

.td-vip-drawing-action:disabled,
.td-vip-drawing-group-action:disabled {
    opacity: 0.5;
    cursor: default;
}

.td-vip-drawing-action--danger {
    border-color: rgba(254, 202, 202, 0.96);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(254, 242, 242, 0.98));
    color: #b91c1c;
}

@media (max-width: 768px) {
    .td-vip-drawing-row {
        grid-template-columns: 1fr;
    }

    .td-vip-drawing-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .td-vip-drawing-group-head {
        flex-wrap: wrap;
    }
}

body.td-vip-body :where(
    a[href],
    button,
    input:not([type="hidden"]),
    select,
    textarea,
    [role="button"],
    [tabindex]:not([tabindex="-1"])
):focus-visible {
    outline: 2px solid #0ea5e9 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.34) !important;
}

body.td-vip-body.is-night-mode :where(
    a[href],
    button,
    input:not([type="hidden"]),
    select,
    textarea,
    [role="button"],
    [tabindex]:not([tabindex="-1"])
):focus-visible {
    outline-color: #38bdf8 !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.28) !important;
}

