

.grid2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.icon-bg {
    height: 48px;
    width: 48px;
    background-color: #8BC4FF;
    border-radius: 16px;
}


 Campaign table specific styles 
.table-heading {
    color: #050505;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.campaign-table th {
    font-weight: 500;
    color: #666;
    padding: 16px;
}

.campaign-table td {
    padding: 16px;
    vertical-align: middle;
}

.campaign-name {
    font-weight: 500;
    color: #1A1A1A;
}

.campaign-budget {
    font-weight: 500;
    color: #1A1A1A;
}

.campaign-metrics {
    color: #666;
}

 Campaign action buttons 
.campaign-actions {
    display: flex;
    gap: 8px;
}

.btn-edit {
    background: #F5F5F5;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: #1A1A1A;
    font-size: 14px;
    cursor: pointer;
}

.btn-pause {
    background: #FFEBEE;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: #F13944;
    font-size: 14px;
    cursor: pointer;
}

 Campaign filters 
.campaign-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}




.text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}


.custom-divider {
    border: none;
    margin: 4px 0 2px;
    border-top: 1px solid #ccc;
}

 Wizard Modal Styles 
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-modal-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
    padding: 32px 32px 24px 32px;
    min-width: 420px;
    max-width: 540px;
    width: 100%;
    position: relative;
}

.wizard-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    padding: 32px 24px;
}

.wizard-content {
    margin-bottom: 24px;
}

.wizard-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}


.step0 {
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    padding: 24px;
}

.step-title {
    color: #050505;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
}


.form-check-input:checked {
    background-color: #8BC4FF;
    border-color: #8BC4FF;
}

    .form-check-input:checked[type=checkbox] {
        --bs-form-check-bg-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e);
    }

.form-check-input[type=radio] {
    border-radius: 6px;
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.btn-back {
    padding: 12px 24px;
    color: #050505;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    cursor: pointer;
}


@media (max-width: 1400px) {

  
}

@media (max-width: 1150px) {

 

    .gridClass {
        grid-template-columns: repeat(2,1fr);
    }

    .grid2 {
        grid-template-columns: repeat(1,1fr);
    }

    .responsiveClass {
        border-bottom: 1px solid #E6E6E6 !important;
    }
}

@media (max-width: 550px) {

  
}


.wizard-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

 Wizard Stepper Styles 
.wizard-stepper-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.wizard-stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    min-width: 80px;
}

    .wizard-stepper-step::before {
        position: absolute;
        content: "";
        border-bottom: 2px solid #E6E6E6;
        width: 100%;
        top: 20px;
        left: -35%;
        z-index: 2;
    }

    .wizard-stepper-step.completed::before,
    .wizard-stepper-step.active::before {
        border-bottom: 2px solid #000;
    }

    .wizard-stepper-step::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #E6E6E6;
        width: 100%;
        top: 20px;
        left: 50%;
        z-index: 2;
    }

    .wizard-stepper-step.completed::after,
    .wizard-stepper-step.active::after {
        border-bottom: 2px solid #000;
    }

    .wizard-stepper-step:first-child::before {
        content: none;
    }

    .wizard-stepper-step:last-child::after {
        content: none;
    }


.wizard-stepper-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EBEBEB;
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background 0.3s;
    position: relative;
    z-index: 7;
}

.wizard-stepper-label {
    color: #666;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
}

.wizard-stepper-step.active .wizard-stepper-circle {
    background: #8BC4FF;
}

.wizard-stepper-step.completed .wizard-stepper-circle {
    background: #000;
}

.wizard-stepper-step.active .wizard-stepper-label {
    font-weight: 500;
    color: #050505;
}

.wizard-stepper-step.completed .wizard-stepper-label {
    color: #050505;
    font-weight: 500;
}
 Custom tabs for wizardStep1 
.custom-tabs-container {
    margin: 0 0 24px 0;
}

.custom-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-top: 24px;
}

.custom-tab {
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    color: #888;
    width: 50%;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    text-align: center;
}

    .custom-tab.active {
        color: #222;
        font-weight: 600;
        border-bottom: 2px solid #222;
    }

.custom-tab-content {
    padding: 24px;
}

.hoverMe {
    position: relative;
}

    .hoverMe p {
        background-color: #BDBDBD;
        height: 16px;
        width: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
        color: #fff;
        font-style: italic;
        font-weight: 400;
        font-size: 12px;
        margin-bottom: 0px;
    }

    .hoverMe .tooltiptext {
        display: none;
        width: 328px;
        border: 1px solid #E6E6E6;
        background: #FFF;
        border-radius: 4px;
        position: absolute;
        z-index: 1;
        padding: 12px;
        top: -100px;
        box-shadow: 1px 0px 13px 2px rgb(110 110 110 / 19%);
        left: -154px;
    }

        .hoverMe .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #fff transparent transparent transparent;
        }

    .hoverMe:hover .tooltiptext {
        display: flex;
    }

    .hoverMe:hover p {
        background-color: #333333;
    }

.tab2-btn {
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: none;
    outline: none;
}

.body-copy {
    border-radius: 12px;
    background: #FFF;
    padding: 12px;
}

.copy-p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0px;
}

.textDiv {
    padding: 24px;
    border-top: 1px solid #E6E6E6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.target-heading {
    color: var(--color-text-neutral-secondary, #333);
    max-width: 292px;
    width: 100%;
    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-large, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--type-line-height-label-large, 24px);
    letter-spacing: var(--type-letter-spacing-label-large, 0px);
}

.target-para {
    color: var(--color-text-neutral-tertiary, #666);
    flex: 1; 
    font-family: var(--type-family-paragraph, "Space Grotesk");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;  
    letter-spacing: var(--type-letter-spacing-paragraph-medium, 0px);
}

.right-panel {
    padding: 20px 20px;
    border-bottom: 1px solid #F0F0F0;
}

.right-panel-heading {
    color: var(--color-text-neutral-primary, #050505);

    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-medium, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--type-line-height-label-medium, 20px);  
    letter-spacing: var(--type-letter-spacing-label-medium, 0px);
}

.right-all {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}



.inner-content {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.more-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 9px;
}

.keyword {
    color: var(--color-text-neutral-primary, #050505);

    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-medium, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--type-line-height-label-medium, 20px);  
    letter-spacing: var(--type-letter-spacing-label-medium, 0px);
}

.bg-key {
    border-radius: var(--2xs, 4px);
    background: var(--color-bg-brand-clear-default, #E1ECFB);
    display: flex;
    padding: var(--vertical-0125-rem-2-px, 2px) var(--horizontal-025-rem-4-px, 4px);
    justify-content: center;
    align-items: center;
    gap: var(--gap-025-rem-4-px, 4px);
    color: var(--color-text-info-primary, #005CC8);
    text-align: center;
  
    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-small, 12px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--type-line-height-label-small, 16px);
    letter-spacing: var(--type-letter-spacing-label-small, 0px);
}

.gray {
    overflow: hidden;
    color: var(--color-text-neutral-tertiary, #666);
    text-overflow: ellipsis;
   
    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-medium, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--type-line-height-label-medium, 20px); 
    letter-spacing: var(--type-letter-spacing-label-medium, 0px);
}

.red {
    color: var(--color-text-danger-secondary, #F13944);
    text-align: center;
    cursor: pointer;
    justify-content: flex-end;

    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-small, 12px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--type-line-height-label-small, 16px);  
    letter-spacing: var(--type-letter-spacing-label-small, 0px);
    display: flex;
    align-items: center;
    gap: 4px;
}

.remove-btn {
    display: flex;
    padding: var(--vertical-05-rem-8-px, 8px) var(--horizontal-1-rem-16-px, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--gap-025-rem-4-px, 4px);
    display: flex;
    border: none;
    box-shadow: none;
    border-radius: var(--xs, 6px);
    background: var(--color-bg-danger-clear-default, #FFECEA);
    outline: none;
    color: var(--color-text-danger-primary, #B2242E);
    text-align: center;
   
    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-small, 12px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--type-line-height-label-small, 16px); 
    letter-spacing: var(--type-letter-spacing-label-small, 0px);
}

.remove-add {
    border-radius: var(--xs, 6px);
    background: #F5F5F5;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: var(--gap-025-rem-4-px, 4px);
    color: var(--color-text-neutral-primary, #050505);
    text-align: center;
    border: none;
    
    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-small, 12px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--type-line-height-label-small, 16px); 
    letter-spacing: var(--type-letter-spacing-label-small, 0px);
}

.sort-by {
    display: flex;
    align-items: center;
    color: var(--color-text-neutral-primary, #050505);
    text-align: center;

    font-family: var(--type-family-label, "Space Grotesk");
    font-size: var(--type-size-label-medium, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--type-line-height-label-medium, 20px);  
    letter-spacing: var(--type-letter-spacing-label-medium, 0px);
    gap: 4px;
}

@media (max-width: 1200px) {
    .wizard-stepper-container {
        padding: 0 10px;
    }

    .wizard-stepper-step {
        min-width: 70px;
    }

    .wizard-stepper-circle {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .wizard-stepper-label {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .wizard-stepper-container {
        padding: 0 5px;
    }

    .wizard-stepper-step {
        min-width: 60px;
    }

    .wizard-stepper-circle {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .wizard-stepper-label {
        font-size: 12px;
        line-height: 16px;
    }

    .gridClass {
        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width: 768px) {
    .wizard-stepper-container {
        overflow-x: auto;
        padding: 0;
        justify-content: flex-start;
        gap: 10px;
    }

    .wizard-stepper-step {
        min-width: 50px;
        flex: 0 0 auto;
    }

    .wizard-stepper-circle {
        width: 32px;
        height: 32px;
        padding: 6px;
        margin-bottom: 8px;
    }

    .wizard-stepper-label {
        font-size: 11px;
        line-height: 14px;
    }

    .wizard-stepper-step::before,
    .wizard-stepper-step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .wizard-stepper-container {
        gap: 5px;
    }

    .wizard-stepper-step {
        min-width: 45px;
    }

    .wizard-stepper-circle {
        width: 28px;
        height: 28px;
        padding: 5px;
        margin-bottom: 6px;
    }

    .wizard-stepper-label {
        font-size: 10px;
        line-height: 12px;
    }
}

.bgClass {
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    background: #FFF;
}

.section1 {
    padding: 24px;
    border-bottom: 1px solid #E6E6E6;
}

.headingsection {
    color: #050505;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.orangeDiv {
    border-radius: 8px;
    border: 1px solid #FEDBC3;
    background: #FEEEE3;
    padding: 12px 16px;
    color: #050505;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.para {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 24px;
    margin-bottom: 0px;
}

.cardClass {
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 24px;
}

.cardHeading {
    color: #050505;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.cardPara {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
}


 Quill editor custom styles 
.bold-text-area {
    margin-top: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    padding: 0;
}

    .bold-text-area .ql-toolbar {
        border-radius: 8px 8px 0 0 !important;
        border: none;
        border-bottom: 1px solid #E6E6E6 !important;
        background: #f5f5f5 !important;
        padding: 10px !important;
    }

    .bold-text-area .ql-container {
        border-radius: 0 0 8px 8px;
        border: none;
        min-height: 100px;
        font-size: 15px;
        padding: 8px 12px;
    }

    .bold-text-area .ql-editor {
        min-height: 80px;
        font-size: 15px;
        padding: 8px 0;
    }

    .bold-text-area .ql-toolbar button {
        border-radius: 4px;
    }

    .bold-text-area .ql-toolbar .ql-picker-label {
        border-radius: 4px;
    }

    .bold-text-area .ql-toolbar .ql-active {
        background: #f0f0f0;
    }

    .bold-text-area .ql-toolbar .ql-picker {
        margin-right: 8px;
    }

    .bold-text-area .ql-toolbar .ql-formats {
        margin-right: 12px;
    }

.summary-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.summary-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    padding: 24px;
    margin-bottom: 0;
}

.summary-title {
    font-size: 18px;
    font-weight: 400;
    color: #050505;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 230px;
    width: 100%;
}

.summary-icon {
    width: 40px;
    height: 40px;
}

.summary-label {
    color: #050505;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.summary-value {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0px;
}

.summary-products {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.summary-product {
    border-radius: 12px;
    border: 1px solid #E6E6E6;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

    .summary-product img {
        width: 72px;
        height: 100%;
        border-radius: 12px 0px 0px 12px;
    }

.summary-product-desc {
    overflow: hidden;
    color: #050505;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.summary-product-meta {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

@media (max-width: 1300px) {
    .summary-products {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 900px) {
    .summary-row, .summary-products {
        flex-wrap: wrap;
        gap: 12px;
    }

    .summary-card {
        padding: 16px;
    }

    .summary-products {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .summary-products {
        grid-template-columns: repeat(1,1fr);
    }

    .summary-section {
        gap: 16px;
    }

    .summary-card {
        padding: 10px;
        border-radius: 10px;
    }

    .summary-row, .summary-products {
        gap: 8px;
    }

    .summary-title {
        font-size: 15px;
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    width: 80%;
    box-sizing: border-box;
    gap: 5px;
    border: 2px solid black;
}

.dropdown-item-:hover {
    background-color: #f1f1f1;
}

.dropdown-item-.checkbox-custom {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 20px;
    cursor: pointer;
}


.dropdown-item- .checkmark-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item input:checked + .checkmark-custom {
    background-color: #007bff;
    border-color: #007bff;
}

.dropdown-item-input:checked + .checkmark-custom::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.dropdown-item-.text-container {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}

.dropdown-item .label-text {
    font-weight: 500;
    color: #333;
}

.dropdown-item .sublabel-text {
    color: #999;
    font-size: 0.8em;
}

.dropdown-item.selected {
    background-color: #e9f5ff;
    border: 1px solid #007bff;
    border-radius: 8px;
}

.label-write {
    font-weight: 500;
    color: #939191;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    transition: 0.4s;
    border-radius: 34px;
}

    .slider::before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        right: 4px;
        top: 4px;
        background-color: white;
        border-radius: 50%;
        transition: 0.4s;
    }

    .slider::after {
        content: "";
        position: absolute;
        transition: 0.3s;
    }

.switch input:not(:checked) + .slider::after {
    left: 8px;
    top: 8px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    opacity: 1;
}

.switch input:checked + .slider {
    background-color: #0084ff;
}

    .switch input:checked + .slider::before {
        left: 4px;
        right: auto;
    }

    .switch input:checked + .slider::after {
        top: 9px;
        right: 10px;
        height: 10px;
        width: 2px;
        background-color: white;
        opacity: 1;
        border: none;
        border-radius: 0;
        left: auto;
    }

.selected-option {
    z-index:1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 6px;
    padding: 12px;
    padding-right: 36px;
    border: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 16px;
    height: 16px;
}
.custom-select-wrapper {
    position: relative;
    border-left: 1px solid #E6E6E6;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.selected-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 16px;
    height: 16px;
}

.custom-options {
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}




.label-text {
    font-weight: 500;
    font-size: 14px;
}

.label-write {
    font-size: 12px;
    color: #777;
}

.label-write {
    font-weight: 500;
    color: #939191;
}
.custom-divider {
    border: none;
    margin: 4px 0 2px;
}




.product-performance ul {
    list-style: none;
    padding: 0;
}



.product-performance li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-performance img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
}

.product-performance .stars {
    margin-left: auto;
    color: #facc15;
}



.review {
    border-top: 1px solid #eee;
    padding: 16px 0;
}

    .review:first-child {
        border-top: none;
    }

    .review h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .review small {
        color: #666;
    }

.stars {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.yellow-star {
    color: #C7C700;
}

.gray-star {
    color: #b0aeae;
    position: relative;
    margin-left: 2px;
}

.review-text {
    
    text-overflow: ellipsis;
    color: var(--color-text-neutral-secondary, #333);
    font-family: var(--type-family-paragraph, "Space Grotesk");
    font-size: var(--type-size-paragraph-medium, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--type-line-height-paragraph-medium, 24px);
    letter-spacing: var(--type-letter-spacing-paragraph-medium, 0px);
}

.helo {
    font-size: 14px;
    color: #000;
    margin-left: 4px;
}

.stars {
    color: #C7C700;
}

.helo {
    color: #000000;
}

.gray-star {
    color: #b0aeae;
    text-shadow: 0 0 1px #888;
}

.review p {
    margin: 10px 0;
    color: #444;
    line-height: 1.4;
}

.review a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 768px) {
    .dashboard {
        grid-template-columns: 1fr;
    }
}

.light-review {
    color: #999;
    font-size: 14px;
}


.bold-text-area {
    margin-top: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    padding: 0;
}

    .bold-text-area .ql-toolbar {
        border-radius: 8px 8px 0 0 !important;
        border: none;
        border-bottom: 1px solid #E6E6E6 !important;
        background: #f5f5f5 !important;
        padding: 10px !important;
    }

    .bold-text-area .ql-container {
        border-radius: 0 0 8px 8px;
        border: none;
        min-height: 100px;
        font-size: 15px;
        padding: 8px 12px;
    }

    .bold-text-area .ql-editor {
        min-height: 80px;
        font-size: 15px;
        padding: 8px 0;
    }

    .bold-text-area .ql-toolbar button {
        border-radius: 4px;
    }

    .bold-text-area .ql-toolbar .ql-picker-label {
        border-radius: 4px;
    }

    .bold-text-area .ql-toolbar .ql-active {
        background: #f0f0f0;
    }

    .bold-text-area .ql-toolbar .ql-picker {
        margin-right: 8px;
    }

    .bold-text-area .ql-toolbar .ql-formats {
        margin-right: 12px;
    }

.summary-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.summary-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    padding: 24px;
    margin-bottom: 0;
}

.summary-title {
    font-size: 18px;
    font-weight: 400;
    color: #050505;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 230px;
    width: 100%;
}

.summary-icon {
    width: 40px;
    height: 40px;
}

.summary-label {
    color: #050505;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.summary-value {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0px;
}

.summary-products {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.summary-product {
    border-radius: 12px;
    border: 1px solid #E6E6E6;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

    .summary-product img {
        width: 72px;
        height: 100%;
        border-radius: 12px 0px 0px 12px;
    }

.summary-product-desc {
    
    color: #050505;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.summary-product-meta {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

@media (max-width: 1300px) {
    .summary-products {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 900px) {
    .summary-row, .summary-products {
        flex-wrap: wrap;
        gap: 12px;
    }

    .summary-card {
        padding: 16px;
    }

    .summary-products {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .summary-products {
        grid-template-columns: repeat(1,1fr);
    }

    .summary-section {
        gap: 16px;
    }

    .summary-card {
        padding: 10px;
        border-radius: 10px;
    }

    .summary-row, .summary-products {
        gap: 8px;
    }

    .summary-title {
        font-size: 15px;
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    width: 80%;
    box-sizing: border-box;
    gap: 5px;
    border: 2px solid black;
}

.dropdown-item-:hover {
    background-color: #f1f1f1;
}

.dropdown-item-.checkbox-custom {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 20px;
    cursor: pointer;
}


.dropdown-item- .checkmark-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item input:checked + .checkmark-custom {
    background-color: #007bff;
    border-color: #007bff;
}

.dropdown-item-input:checked + .checkmark-custom::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.dropdown-item-.text-container {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}

.dropdown-item .label-text {
    font-weight: 500;
    color: #333;
}

.dropdown-item .sublabel-text {
    color: #999;
    font-size: 0.8em;
}

.dropdown-item.selected {
    background-color: #e9f5ff;
    border: 1px solid #007bff;
    border-radius: 8px;
}

.label-write {
    font-weight: 500;
    color: #939191;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    transition: 0.4s;
    border-radius: 34px;
}

    .slider::before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        right: 4px;
        top: 4px;
        background-color: white;
        border-radius: 50%;
        transition: 0.4s;
    }

    .slider::after {
        content: "";
        position: absolute;
        transition: 0.3s;
    }

.switch input:not(:checked) + .slider::after {
    left: 8px;
    top: 8px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    opacity: 1;
}

.switch input:checked + .slider {
    background-color: #0084ff;
}

    .switch input:checked + .slider::before {
        left: 4px;
        right: auto;
    }

    .switch input:checked + .slider::after {
        top: 9px;
        right: 10px;
        height: 10px;
        width: 2px;
        background-color: white;
        opacity: 1;
        border: none;
        border-radius: 0;
        left: auto;
    }

 Campaign table specific styles 
.table-heading {
    color: #050505;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.campaign-table th {
    font-weight: 500;
    color: #666;
    padding: 16px;
}

.campaign-table td {
    padding: 16px;
    vertical-align: middle;
}

.campaign-name {
    font-weight: 500;
    color: #1A1A1A;
}

.campaign-budget {
    font-weight: 500;
    color: #1A1A1A;
}

.campaign-metrics {
    color: #666;
}

 Campaign action buttons 
.campaign-actions {
    display: flex;
    gap: 8px;
}

.btn-edit {
    background: #F5F5F5;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: #1A1A1A;
    font-size: 14px;
    cursor: pointer;
}

.btn-pause {
    background: #FFEBEE;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: #F13944;
    font-size: 14px;
    cursor: pointer;
}

 Campaign filters 
.campaign-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.calender-icon-style {
    position: absolute !important;
    left: 10px !important;
    height: 16px !important;
}
.right-panel-selected-items {
    zoom: 90% !important;
}
[dir="rtl"] .d-flex {
    /* flex-direction: row-reverse; */
}

[dir="rtl"] .text-right {
    text-align: left;
}

[dir="rtl"] .ms-1 {
    margin-right: 0.25rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .table th, [dir="rtl"] .table td {
    text-align: right;
}

[dir="rtl"] .pagination {
    flex-direction: row-reverse;
}

[dir="rtl"] .pagination-results {
    text-align: right;
}

[dir="rtl"] .input-with-icon {
    direction: rtl;
}

[dir="rtl"] .wizard-stepper-step::before {
    left: 50%;
}

[dir="rtl"] .wizard-stepper-step::after {
    left: -35%;
}