/* ========== TRACKING PROMOTION MODAL STYLES ========== */
.sd-tracking-promotion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--sd-neutral-100);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
}

.sd-tracking-promotion-modal.sd-marketing-open {
    transform: translateY(0);
    opacity: 1;
}

.sd-tracking-promotion-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sd-tracking-promotion-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    z-index: 990;
    transition: background-color 0.2s;
}

.sd-tracking-promotion-close:hover {
    background-color: var(--sd-neutral-200);
}

.sd-tracking-promotion-content {
    flex: 1;
    display: flex;
    min-height: 0;
}

.sd-tracking-promotion-left {
    width: 881px;
    padding: 48px 120px 44px 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
}

/* Step Styles */
.sd-tr-pr-step {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sd-tr-pr-step-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sd-tr-pr-step-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--sd-neutral-800);
    letter-spacing: -0.48px;
    margin: 0;
}

.sd-tr-pr-step-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--sd-neutral-600);
    margin: 0;
}

/* Promotion Type Cards (Step 1) */
.sd-tr-pr-promotion-types {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sd-tr-pr-type-card {
    background: var(--sd-neutral-100);
    border: 1px solid var(--sd-neutral-300);
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    position: relative;
    height: 117px;
}

.sd-tr-pr-type-card .sd-tr-pr-type-card-content {
    border-radius: 12px 0 0 12px;
}

.sd-tr-pr-type-card .sd-tr-pr-type-card-illustration {
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

.sd-tr-pr-type-card .sd-tr-pr-type-card-illustration img {
    border-radius: 0;
}

.sd-tr-pr-type-card:hover {
    border-color: var(--sd-neutral-400);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sd-tr-pr-type-card.selected {
    border: 2px solid var(--sd-dark-green);
    background: var(--sd-card-background);
    box-shadow: 0 0 0 3px rgba(0, 128, 98, 0.1);
    border-radius: 14px;
}

.sd-tr-pr-type-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    min-width: 0;
}

.sd-tr-pr-type-card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--sd-neutral-800);
    margin: 0;
}

.sd-tr-pr-type-card-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sd-neutral-600);
    margin: 0;
}

.sd-tr-pr-type-card-illustration {
    width: 156px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    align-self: stretch;
    border-radius: 0;
}

.sd-tr-pr-type-card-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    border: none;
    min-height: 117px;
}

/* Customize Form (Step 2) */
.sd-tr-pr-customize-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sd-tr-pr-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-tr-pr-form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.sd-tr-pr-form-group-half {
    flex: 1;
}

.sd-tr-pr-form-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: var(--sd-neutral-800);
    letter-spacing: -0.36px;
    margin: 0;
}

.sd-tr-pr-optional {
    font-weight: 400;
    color: var(--sd-neutral-500);
}

.sd-tr-pr-form-input,
.sd-tr-pr-form-select {
    height: 52px;
    padding: 12px 16px;
    border: 1px solid var(--sd-neutral-300);
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--sd-neutral-800);
    box-sizing: border-box;
    width: 100%;
    background-color: var(--sd-neutral-100);
}

.sd-tr-pr-form-input:focus,
.sd-tr-pr-form-select:focus {
    outline: none;
    border-color: var(--sd-darker-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 98, 0.1);
}

.sd-tr-pr-form-input::placeholder {
    color: var(--sd-neutral-500);
}

.sd-tr-pr-form-input-skeleton {
    /* Skeleton effect */
    background: linear-gradient(270deg, #eef1f7 18.75%, #dbdde6 100%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.5s infinite;
    border: 1px solid #d1d5db;
    color: transparent; /* Make text invisible */
}
@keyframes sd-tr-pr-form-input-skeleton-loading {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

/* Remove skeleton styling after loading */
.sd-tr-pr-form-input-skeleton-loaded {
    background: #fff; /* Restore normal input background */
    animation: none; /* Stop skeleton animation */
    color: #000; /* Restore text color */
}

.sd-tr-pr-char-count {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--sd-neutral-500);
    margin-top: -4px;
}

.sd-tr-pr-char-count span {
    font-weight: 600;
    color: var(--sd-neutral-700);
}

/* For custom dropdown implementation */
.sd-tr-pr-color-dropdown {
    position: relative;
}

.sd-tr-pr-color-dropdown-trigger {
    height: 52px;
    padding: 12px 16px;
    border: 1px solid var(--sd-neutral-300);
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--sd-neutral-800);
    box-sizing: border-box;
    width: 100%;
    background-color: var(--sd-neutral-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-tr-pr-color-dropdown-trigger:hover {
    border-color: var(--sd-neutral-400);
}

.sd-tr-pr-color-dropdown-trigger:focus {
    outline: none;
    border-color: var(--sd-darker-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 98, 0.1);
}

.sd-tr-pr-color-display {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.sd-tr-pr-dropdown-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--sd-neutral-600);
    transition: transform 0.2s ease-in-out;
}

.sd-tr-pr-color-dropdown-trigger.active .sd-tr-pr-dropdown-arrow {
    transform: rotate(180deg);
}

.sd-tr-pr-color-dropdown-list {
    position: fixed;
    background: var(--sd-neutral-100);
    border: 1px solid var(--sd-neutral-300);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10000;
}

.sd-tr-pr-color-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    min-height: 48px;
}

.sd-tr-pr-color-dropdown-item:hover {
    background-color: var(--sd-neutral-200);
}

.sd-tr-pr-color-dropdown-item.selected {
    background-color: var(--sd-neutral-200);
}

.sd-tr-pr-color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--sd-neutral-300);
    box-sizing: border-box;
}

.sd-tr-pr-color-label {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--sd-neutral-800);
}

.sd-tr-pr-color-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-dark-green);
}

.sd-tr-pr-color-check svg {
    width: 100%;
    height: 100%;
}

/* Button Text Dropdown - Similar to Color Dropdown */
.sd-tr-pr-button-text-dropdown {
    position: relative;
}

.sd-tr-pr-button-text-dropdown-trigger {
    height: 52px;
    padding: 12px 16px;
    border: 1px solid var(--sd-neutral-300);
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--sd-neutral-800);
    box-sizing: border-box;
    width: 100%;
    background-color: var(--sd-neutral-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-tr-pr-button-text-dropdown-trigger:hover {
    border-color: var(--sd-neutral-400);
}

.sd-tr-pr-button-text-dropdown-trigger.active {
    border-color: var(--sd-darker-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 98, 0.1);
}

.sd-tr-pr-button-text-dropdown-trigger.active svg {
    transform: rotate(180deg);
}

.sd-tr-pr-button-text-label {
    flex: 1;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--sd-neutral-800);
}

.sd-tr-pr-button-text-dropdown-trigger svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--sd-neutral-500);
    transition: transform 0.2s ease-in-out;
}

.sd-tr-pr-button-text-dropdown-list {
    position: fixed;
    background: var(--sd-neutral-100);
    border: 1px solid var(--sd-neutral-300);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10000;
}

.sd-tr-pr-button-text-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    min-height: 48px;
}

.sd-tr-pr-button-text-dropdown-item:hover {
    background-color: var(--sd-neutral-200);
}

.sd-tr-pr-button-text-dropdown-item.selected {
    background-color: var(--sd-neutral-200);
}

.sd-tr-pr-button-text-item-label {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--sd-neutral-800);
}

.sd-tr-pr-button-text-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-dark-green);
}

.sd-tr-pr-button-text-check svg {
    width: 100%;
    height: 100%;
}

/* Preview Panel (Right Side) */
.sd-tracking-promotion-right {
    width: calc(100% - 881px);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    border-left: 1px solid var(--sd-neutral-300);
}

.sd-tr-pr-preview-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sd-tr-pr-preview-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: var(--sd-neutral-800);
    letter-spacing: -0.4px;
    margin: 0;
}

.sd-tr-pr-preview-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.sd-tr-pr-preview-phone {
    max-width: 100%;
    position: relative;
}

.sd-tr-pr-preview-card {
    background: var(--sd-neutral-300);
    border-radius: 10px;
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 382px;
    height: 158px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sd-tr-pr-preview-card-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.sd-tr-pr-preview-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    min-width: 0;
    justify-content: space-between;
}

.sd-tr-pr-preview-card-header {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0A0A0A;
    margin: 0;
    word-wrap: break-word;
}

.sd-tr-pr-preview-card-button {
    background: #0A0A0A;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 7px 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.2s;
}

.sd-tr-pr-preview-card-button:hover {
    background: var(--sd-neutral-700);
}

.sd-tr-pr-preview-card-image-wrapper {
    flex-shrink: 0;
    width: 140px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-tr-pr-preview-card-image {
    width: 100%;
    height: 100%;
    background: var(--sd-neutral-300);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 100px;
    flex-direction: column;
    flex-shrink: 0;
    align-self: stretch;
}

.promotions-play-icon-container {
    display: flex;
    padding: 6px;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.50);
    position: relative;
    z-index: 2;
    transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.promotions-play-icon-container:hover {
    transform: scale(1.06);
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.sd-tr-pr-promotion-card-play-icon-container {
    display: flex;
    padding: 6px;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.50);
    position: relative;
    z-index: 2;
    transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.sd-tr-pr-promotion-card-play-icon-container:hover {
    transform: scale(1.06);
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.sd-tr-pr-preview-card-image img,
.sd-tr-pr-preview-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    object-position: 50% 50%;
    pointer-events: none;
}

.sd-tr-pr-preview-image-placeholder {
    width: 72.793px;
    height: 24px;
    object-fit: contain;
    /*opacity: 0.5;*/
}

/* Footer */
.sd-tracking-promotion-footer {
    padding: 24px 120px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--sd-neutral-300);
    background: var(--sd-neutral-100);
}

.sd-tracking-promotion-footer .sd-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.sd-tracking-promotion-footer .sd-secondary-btn {
    background: var(--sd-neutral-200);
    color: var(--sd-neutral-800);
    border: none !important;
}

.sd-tracking-promotion-footer .sd-secondary-btn:hover {
    background: var(--sd-neutral-300);
}

.sd-tracking-promotion-footer .sd-primary-btn {
    background: var(--sd-dark-green);
    color: white;
}

.sd-tracking-promotion-footer .sd-primary-btn:hover {
    background: var(--sd-darker-green);
}

.sd-tracking-promotion-footer .sd-primary-btn:disabled {
    background: var(--sd-neutral-300);
    color: var(--sd-neutral-500);
    cursor: not-allowed;
}

/* Header Section */
.sd-tr-pr-header-section {
    width: 100%;
}

.sd-tr-pr-header-title {
    color: var(--sd-neutral-800);
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0.01em;
}

/* Empty State */
.sd-tr-pr-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
    width: 100%;
    min-height: 0;
    padding: 0 64px;
    height: 50vh;
}

.sd-tr-pr-empty-state-icon-wrapper {
    background: var(--sd-neutral-300);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-tr-pr-empty-state-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-tr-pr-empty-state-icon svg {
    width: 100%;
    height: 100%;
}

.sd-tr-pr-empty-state-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 670px;
    max-width: 100%;
}

.sd-tr-pr-empty-state-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    width: 100%;
}

.sd-tr-pr-empty-state-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: var(--sd-neutral-800);
    margin: 0;
}

.sd-tr-pr-empty-state-description {
    font-weight: 350;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sd-neutral-600);
    margin: 0;
    max-width: 472px;
}

.sd-tr-pr-new-promotion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    padding: 14px 20px 14px 12px;
    background: var(--sd-dark-green);
    color: white;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sd-tr-pr-new-promotion-btn:hover {
    background: var(--sd-darker-green);
}

.sd-tr-pr-new-promotion-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sd-tr-pr-reorder-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    padding: 14px 20px 14px 12px;
    background: var(--sd-neutral-100);
    color: var(--sd-neutral-800);
    border-radius: 8px;
    border: 1px solid var(--sd-neutral-400);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sd-tr-pr-reorder-btn:hover {
    background: var(--sd-neutral-200);
    border-color: var(--sd-neutral-450);
}

.sd-tr-pr-reorder-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sd-tr-pr-reorder-btn svg path {
    fill: var(--sd-neutral-800);
}

.sd-tr-pr-list-header-actions .sd-tr-pr-reorder-btn {
    height: auto;
    padding: 8px 16px 8px 12px;
    gap: 6px;
}

/* List View */
.sd-tr-pr-list-view {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sd-tr-pr-list-header-section {
    width: 100%;
}

.sd-tr-pr-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.sd-tr-pr-list-header-title {
    color: var(--sd-neutral-800);
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0.01em;
}

.sd-tr-pr-list-header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sd-tr-pr-list-header-actions .sd-tr-pr-new-promotion-btn {
    height: auto;
    padding: 8px 16px 8px 12px;
    gap: 6px;
}

.sd-tr-pr-list-header-actions .sd-secondary-btn {
    padding: 8px 16px;
    border: 1px solid var(--sd-neutral-300);
    background: var(--sd-neutral-100);
    color: var(--sd-neutral-600);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
}

.sd-tr-pr-tabs-section {
    padding: 28px 64px 0 0;
    width: 100%;
}

.sd-tr-pr-tabs-container {
    position: relative;
    display: inline-block;
}

.sd-tr-pr-tabs {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
}

.sd-tr-pr-tab {
    background: transparent;
    border: none;
    padding: 0;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
    color: var(--sd-neutral-600);
    font-weight: 400;
    letter-spacing: -0.3px;
    transition: color 0.2s;
    position: relative;
}

.sd-tr-pr-tab.active {
    color: var(--sd-darker-green);
    font-weight: 700;
}

.sd-tr-pr-tab-slider-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 42px;
    background: var(--sd-darker-green);
    transition: left 0.3s cubic-bezier(.4,0,.2,1), width 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

.sd-tr-pr-tab:hover {
    color: var(--sd-dark-green);
}

.sd-tr-pr-promotions-container {
    padding: 40px 64px 40px 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

/* Promotion Card - Replicates Preview Card */
.sd-tr-pr-promotion-card-item {
    width: max-content;
    position: relative;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card {
    background: var(--sd-neutral-300);
    border-radius: 10px;
    width: 382px;
    overflow: hidden;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    /*height: 100%;*/
    height: 160px;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    min-width: 0;
    justify-content: space-between;
    pointer-events: none;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card-header {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0A0A0A;
    margin: 0;
    word-wrap: break-word;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card-button {
    background: #0A0A0A;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 7px 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.2s;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card-image-wrapper {
    flex-shrink: 0;
    width: 140px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card-image {
    width: 100%;
    height: 100%;
    background: var(--sd-neutral-300);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 100px;
    flex-direction: column;
    flex-shrink: 0;
    align-self: stretch;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-promotion-card-image img,
.sd-tr-pr-promotion-card-item .sd-tr-pr-preview-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    object-position: 50% 50%;
    pointer-events: none;
}

.sd-tr-pr-promotion-card-item .sd-tr-pr-preview-image-placeholder {
    width: 72.793px;
    height: 24px;
    object-fit: contain;
    opacity: 0.5;
}

.sd-tr-pr-promotion-card-menu {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: var(--sd-neutral-100);
    border: none;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sd-tr-pr-promotion-card-menu:hover {
    background: var(--sd-neutral-300);
}

.sd-tr-pr-promotion-card-menu svg {
    width: 24px;
    height: 24px;
    color: var(--sd-neutral-600);
}

/* Promotion Menu Dropdown */
.sd-tr-pr-promotion-menu-dropdown {
    background: var(--sd-neutral-100);
    border: 1px solid var(--sd-neutral-300);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-width: 120px;
    overflow: hidden;
}

.sd-tr-pr-menu-item {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    color: var(--sd-neutral-700);
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sd-tr-pr-menu-item:hover {
    background: var(--sd-neutral-300);
}

.sd-tr-pr-menu-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.sd-tr-pr-menu-item.sd-tr-pr-delete-menu-item {
    color: var(--sd-error-red);
}

.sd-tr-pr-menu-item.sd-tr-pr-delete-menu-item:hover {
    background: var(--sd-error-red-50);
}

.sd-tr-pr-menu-item span {
    display: block;
    flex: 1;
}

.sd-tr-pr-no-promotions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    min-height: 400px;
    text-align: center;
    width: 100%;
}

.sd-tr-pr-no-promotions-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--sd-neutral-300);
    border-radius: 16px;
}

.sd-tr-pr-no-promotions-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.sd-tr-pr-no-promotions-text {
    color: var(--sd-neutral-700);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .sd-tracking-promotion-left {
        width: 60%;
        padding: 48px 80px 44px 80px;
    }

    .sd-tracking-promotion-right {
        width: 40%;
        padding: 48px 32px;
    }

    .sd-tracking-promotion-footer {
        padding: 24px 80px;
    }
}

@media (max-width: 1200px) {
    .sd-tracking-promotion-content {
        flex-direction: column;
    }

    .sd-tracking-promotion-left {
        width: 100%;
        padding: 48px 60px 44px 60px;
    }

    .sd-tracking-promotion-right {
        width: 100%;
        padding: 48px 60px;
        border-left: none;
        border-top: 1px solid var(--sd-neutral-200);
    }

    .sd-tracking-promotion-footer {
        padding: 24px 60px;
    }
}

/* Image Select Button */
.sd-tr-pr-image-select-btn {
    height: 52px;
    padding: 12px 16px;
    border: 1px solid var(--sd-neutral-300);
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--sd-neutral-800);
    box-sizing: border-box;
    width: 100%;
    background-color: var(--sd-neutral-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-tr-pr-image-select-btn:hover {
    border-color: var(--sd-neutral-400);
}

.sd-tr-pr-image-select-btn:focus {
    outline: none;
    border-color: var(--sd-dark-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 98, 0.1);
}

.sd-tr-pr-image-btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.sd-tr-pr-image-btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--sd-neutral-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-tr-pr-image-btn-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--sd-neutral-800);
}

.sd-tr-pr-image-btn-preview {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.sd-tr-pr-image-btn-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--sd-neutral-600);
}

/* Image Selection Modal - Using sd-modal-v6 base styles */
#sd-tr-pr-image-modal .modal-dialog {
    max-width: 698px;
}

#sd-tr-pr-image-modal .modal-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.sd-tr-pr-image-modal-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sd-tr-pr-image-modal-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: var(--sd-neutral-800);
    letter-spacing: -0.48px;
    margin: 0;
}

.sd-tr-pr-image-modal-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--sd-neutral-600);
    margin: 0;
    margin-top: 4px;
}

#sd-tr-pr-image-modal .modal-body {
    padding: 28px;
    overflow-y: auto;
    max-height: max(50vh, 512px);
}

.sd-tr-pr-image-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-tr-pr-image-grid-row {
    display: flex;
    gap: 12px;
    height: 188px;
}

.sd-tr-pr-image-grid-item {
    flex: 1;
    height: 188px;
    max-width: 206px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    position: relative;
    background: var(--sd-neutral-400);
}

.sd-tr-pr-image-grid-item:hover {
    border-color: var(--sd-neutral-300);
}

.sd-tr-pr-image-grid-item.selected {
    border: 1px solid var(--sd-dark-green);
    border-radius: 15px;
}

.sd-tr-pr-image-grid-item.selected > img {
    border-radius: 12px;
    margin: 2px;
    transform: translate(-2px, -2px) scale(0.97);
    transition: 0.1s ease-in-out;
}

.sd-tr-pr-image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sd-tr-pr-image-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
}

.sd-tr-pr-image-grid-item.selected .sd-tr-pr-image-check {
    opacity: 1;
}

.sd-tr-pr-image-placeholder {
    background: var(--sd-neutral-400);
    pointer-events: none;
}

.sd-tr-pr-image-modal-footer {
    padding: 32px 24px;
    border-top: 1px solid var(--sd-neutral-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sd-tr-pr-upload-custom-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 12px 16px;
    border: 1px solid var(--sd-neutral-300);
    border-radius: 8px;
    background: white;
    color: var(--sd-neutral-800);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-tr-pr-upload-custom-btn:hover {
    background: var(--sd-neutral-100);
    border-color: var(--sd-neutral-400);
}

.sd-tr-pr-upload-custom-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--sd-neutral-600);
}

.sd-tr-pr-image-modal-footer-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sd-tr-pr-image-modal-footer .sd-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.sd-tr-pr-image-modal-footer .sd-secondary-btn {
    background: var(--sd-neutral-100);
    color: var(--sd-neutral-800);
    border: 1px solid var(--sd-neutral-300);
}

.sd-tr-pr-image-modal-footer .sd-secondary-btn:hover {
    background: var(--sd-neutral-200);
}

.sd-tr-pr-image-modal-footer .sd-primary-btn {
    background: var(--sd-dark-green);
    color: white;
    height: 48px;
}

.sd-tr-pr-image-modal-footer .sd-primary-btn:hover {
    background: var(--sd-darker-green);
}

.sd-tr-pr-image-modal-footer .sd-primary-btn:disabled {
    background: var(--sd-neutral-300);
    color: var(--sd-neutral-500);
    cursor: not-allowed;
    font-weight: 500;
}

/* Confirmation Modal Styles */
.sd-tr-pr-confirmation-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.sd-tr-pr-confirmation-modal-header {
    border-bottom: none;
    padding: 0 !important;
    position: relative;
}

.sd-tr-pr-confirmation-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    z-index: 99999;
    background: transparent;
    border: none;
}

.sd-tr-pr-confirmation-close-btn:hover {
    background-color: var(--sd-neutral-100);
}

.sd-tr-pr-confirmation-modal-body {
    padding: 0 24px 24px 24px;
}

.sd-tr-pr-confirmation-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.sd-tr-pr-confirmation-warning {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--sd-neutral-900);
    margin: 0;
}

.sd-tr-pr-confirmation-question {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--sd-neutral-700);
    margin: 0;
}

.sd-tr-pr-confirmation-modal-footer {
    border-top: none;
    padding: 0 24px 24px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
}

.sd-tr-pr-confirmation-cancel-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--sd-neutral-700);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sd-tr-pr-confirmation-cancel-btn:hover {
    color: var(--sd-neutral-900);
}

.sd-tr-pr-confirmation-action-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
    background: #D92D20;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.sd-tr-pr-confirmation-action-btn:hover {
    opacity: 0.85;
    color: #FFFFFF;
}

/* Modal backdrop and positioning */
#sd-tr-pr-confirmation-modal .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

#sd-tr-pr-confirmation-modal .modal-content {
    background: #ffffff;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .sd-tr-pr-confirmation-modal-header,
    .sd-tr-pr-confirmation-modal-body,
    .sd-tr-pr-confirmation-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .sd-tr-pr-confirmation-modal-header {
        padding-top: 20px;
    }
    
    .sd-tr-pr-confirmation-modal-footer {
        padding-bottom: 20px;
    }
    
    .sd-tr-pr-confirmation-warning {
        font-size: 16px;
    }
    
    .sd-tr-pr-confirmation-question {
        font-size: 14px;
    }
}

.sd-tr-pr-promotion-card-footer {
    display: flex;
    padding: 10px 6px 10px 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 0 0 10px 10px;
    background: var(--sd-neutral-100);
}

.sd-tr-pr-promotion-card-analytics-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sd-tr-pr-promotion-card-analytics-icon-container {
    display: flex;
    padding: 0 3px 0 4px;
    justify-content: center;
    align-items: center;
}

.sd-tr-pr-promotion-card-analytics-icon {
    color: var(--sd-neutral-900);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 23.8px */
}

.sd-tr-pr-promotion-analytic-text {
    color: var(--sd-neutral-600);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.sd-tr-pr-promotion-card-navigation-container {
    display: flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.sd-tr-pr-promotion-card-navigation-container:hover {
    background: var(--sd-neutral-300);
}

@media (prefers-color-scheme: dark) {
    .sd-tr-pr-promotion-card-footer {
        background: var(--sd-neutral-300); /* Replace --sd-neutral-800 with the appropriate dark mode variable */
    }

    .sd-tr-pr-promotion-card-navigation-container svg path {
        fill: var(--sd-neutral-900); /* Replace with your variable or fallback */
    }

    .sd-tr-pr-promotion-card-navigation-container:hover {
        background: var(--sd-neutral-400);
    }

    .sd-tr-pr-promotion-card-analytics-icon-container svg path {
        fill: var(--sd-neutral-900); /* Replace with your variable or fallback */
    }
}

.social-promotions-domain-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.social-promotions-link-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-promotions-domain-text {
    color: #262626;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.sd-tr-pr-promotion-card-domain-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.sd-tr-pr-promotion-card-link-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sd-tr-pr-promotion-card-domain-text {
    color: #262626;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.sd-tr-pr-promotion-card-social-icon-container {
    display: flex;
}

.social-promotions-social-icon-container {
    display: flex;
}

.sd-tr-pr-image-modal-loading {
    filter: blur(3px);
    transition: all 500ms ease-in-out;
}

.sd-tr-pr-reorder-modal {
  width: 698px;
}

/* ...existing code... */
.sd-tr-pr-reorder-modal-body {
    max-height: 500px;
    display: flex;
    padding: 24px 28px 0 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    min-height: 0; /* allow children to shrink and enable scrolling */
}

/* Make the promotions list scrollable when items overflow */
#sd-tr-pr-reorder-promotion-container,
.sd-tr-pr-reorder-list {
    flex: 1 1 auto;
    min-height: 0; /* essential for flex children to scroll in WebKit */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    padding-bottom: 16px;
    /* padding-right: 8px;  */
    /* prevent content from hiding under scrollbar */
}
/* ...existing code... */

.sd-tr-pr-reorder-modal-content {
    padding: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.sd-tr-pr-reorder-modal-container {
  align-self: stretch;
  position: relative;
  background: var(--sd-neutral-100);
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  display: flex;
}

.sd-tr-pr-reorder-modal-title-container {
  align-self: stretch;
}

.sd-tr-pr-reorder-modal-title {
  color: var(--sd-neutral-900);
  font-size: 24px;
  font-weight: 800;
  line-height: 33.60px;
  word-wrap: break-word;
}

.sd-tr-pr-reorder-modal-label {
  color: var(--sd-neutral-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 22.40px;
  word-wrap: break-word;
}

.sd-tr-pr-reorder-modal-label-container {
  align-self: stretch;
}

.sd-tr-pr-reorder-modal-close-container {
  padding: 8px;
  left: 646px;
  top: 12px;
  position: absolute;
  border-radius: 99px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}

.sd-tr-pr-modal-reorder-close {
  position: relative;
}

.sd-tr-pr-modal-reorder-action-container {
  align-self: stretch;
  padding: 32px;
  border-top: 1px var(--sd-neutral-300) solid;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: inline-flex;
}

.sd-tr-pr-modal-reorder-buttons-container {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: var(--sd-neutral-100);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.sd-tr-pr-modal-reorder-cancel-button-text {
  color: var(--sd-neutral-800);
  font-size: 16px;
  font-weight: 500;
  line-height: 22.40px;
  word-wrap: break-word;
}

.sd-tr-pr-modal-reorder-cancel-button {
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.sd-tr-pr-modal-reorder-save-button-text {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  word-wrap: break-word;
}

.sd-tr-pr-modal-reorder-save-button {
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.sd-tr-pr-reorder-modal-header {
    border-bottom: none !important;
    position: relative;
    min-height: 0px;
    display: flex;
    padding: 28px 28px 0 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.sd-tr-pr-reorder-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    z-index: 99999;
    background: transparent;
    border: none;
}

.sd-tr-pr-reorder-close-btn:hover {
    background-color: var(--sd-neutral-100);
}

.sd-tr-pr-reorder-modal-footer {
    display: flex;
    padding: 32px;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-top: 1px solid var(--sd-neutral-300);
}

.sd-tr-pr-confirmation-action-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    background: var(--sd-dark-green);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.sd-tr-pr-confirmation-action-btn:hover {
    opacity: 0.85;
    color: var(--sd-neutral-100);
    background: var(--sd-darker-green);
}

.sd-tr-pr-reorder-item {
    display: flex;
    padding: 16px 10px 16px 16px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid var(--sd-neutral-300);
}

.sd-tr-pr-reorder-item-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
}

.sd-tr-pr-reorder-item-number-container {
    display: flex;
    padding: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    background: var(--sd-neutral-200);
}

.sd-tr-pr-reorder-item-number {
    color: var(--sd-neutral-800);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    width: 14px;
}

.sd-tr-pr-reorder-item-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
}

.sd-tr-pr-reorder-item-image-container {
    display: flex;
    width: 72px;
    height: 72px;
    flex-direction: column;
    align-items: flex-start;
}

.sd-tr-pr-reorder-item-image {
    display: flex;
    width: 72px;
    height: 72px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
}

.sd-tr-pr-reorder-item-title {
    flex: 1 0 0;
    color: var(--sd-neutral-800);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.sd-tr-pr-reorder-item-handle {
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: grab;
}

.sd-tr-pr-placeholder {
    background-color: var(--sd-neutral-100);
    border: 1px solid var(--sd-neutral-300);
    box-sizing: border-box;
    opacity: 1;
    cursor: grabbing
}


.sd-tr-pr-drag-ghost {
    background-color: var(--sd-neutral-200);
    border: 3px dashed var(--sd-neutral-400);
    opacity: 0.8;
}

.sd-tr-pr-drag-ghost .sd-tr-pr-reorder-item-content,
.sd-tr-pr-drag-ghost .sd-tr-pr-reorder-item-number-container,
.sd-tr-pr-drag-ghost .sd-tr-pr-reorder-item-image-container,
.sd-tr-pr-drag-ghost .sd-tr-pr-reorder-item-handle {
  visibility: hidden;
  opacity: 0;
}
