/* _content/RealOxy.Web.Admin/Component1.razor.rz.scp.css */
.my-component[b-dqqvs1kc4x] {
    border: 2px dashed red;
    padding: 1em;
    margin: 1em 0;
    background-image: url('background.png');
}
/* _content/RealOxy.Web.Admin/Controls/Cards/AddOrEditAmenityCard.razor.rz.scp.css */
/* ===============================
   POPUP CONTAINER
================================ */
.edit-category-popup[b-ookh1v88w1] {
    width: 480px; /* Standard size for single-field popups */
    max-width: 95vw;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    padding: 25px 0 15px 0;
}

/* ===============================
   HEADER
================================ */
.popup-header[b-ookh1v88w1] {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin: 0 25px;
}

    .popup-header h4[b-ookh1v88w1] {
        color: var(--color-text-primary);
        font-size: 1.25rem;
    }

/* ===============================
   FOOTER
================================ */
.popup-footer[b-ookh1v88w1] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* ===============================
   BUTTONS
================================ */
.btn-primary[b-ookh1v88w1] {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: white !important;
    font-weight: 600;
}

.btn-light[b-ookh1v88w1] {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    color: var(--color-text-primary) !important;
    font-weight: 500;
}
/* _content/RealOxy.Web.Admin/Controls/Cards/AddOrEditBrandCard.razor.rz.scp.css */
/* ===============================
   POPUP SIZE (BIGGER)
================================ */

.edit-brand-popup[b-wf99bys8va] {
    width: 600px; /* Increased */
    max-width: 95vw; /* Responsive safety */
    max-height: 90vh; /* Prevent full screen overflow */
    overflow-y: auto; /* Enable vertical scroll */
    padding: 25px 0 15px 0;
    scrollbar-width: thin;
}

@media (max-width: 576px) {
    .edit-brand-popup[b-wf99bys8va] {
        width: 95vw;
        max-height: 85vh;
        border-radius: 16px;
        padding: 20px 0 10px 0;
    }
}

/* ===============================
   HEADER
================================ */

.popup-header[b-wf99bys8va] {
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
}

/* ===============================
   FOOTER
================================ */

.popup-footer[b-wf99bys8va] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* ===============================
   IMAGE PREVIEW
================================ */

.media-preview-list[b-wf99bys8va] {
    display: flex;
    justify-content: center;
    margin: 18px 0 22px 0;
}

/* ===============================
   DROPDOWN UI IMPROVEMENTS
================================ */

.custom-multiselect-dropdown[b-wf99bys8va] {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 14px;
    background: #fff;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

    .custom-multiselect-dropdown:hover[b-wf99bys8va] {
        border-color: var(--color-primary);
    }

/* Dropdown Panel */

.custom-multiselect-panel[b-wf99bys8va] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 6px;
    padding: 10px;
    max-height: 260px;
    overflow-y: auto; /* Vertical scroll only */
    overflow-x: hidden; /* Remove horizontal scroll */
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    z-index: 1000;
}

    /* Prevent internal overflow */

    .custom-multiselect-panel *[b-wf99bys8va] {
        max-width: 100%;
        box-sizing: border-box;
        word-break: break-word;
    }

.dropdown-close-icon[b-wf99bys8va],
.dropdown-arrow[b-wf99bys8va] {
    font-size: 14px;
    cursor: pointer;
    color: #888;
    margin-left: 10px;
    flex-shrink: 0;
}

    .dropdown-close-icon:hover[b-wf99bys8va] {
        color: #000;
    }
/* _content/RealOxy.Web.Admin/Controls/Cards/AddOrEditCategoryCard.razor.rz.scp.css */
/* ===============================
   HEADER
================================ */

.popup-header[b-lm3eddo9jl] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

/* ===============================
   RESPONSIVE POPUP
================================ */



/* ===============================
   FOOTER
================================ */

.popup-footer[b-lm3eddo9jl] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* ===============================
   IMAGE PREVIEW
================================ */

.media-preview-list[b-lm3eddo9jl] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}

.media-item[b-lm3eddo9jl] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-lm3eddo9jl] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-lm3eddo9jl] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-lm3eddo9jl] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-lm3eddo9jl] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-lm3eddo9jl] {
        color: var(--color-primary);
    }

.edit-category-popup[b-lm3eddo9jl] {
    width: 520px; /* Slightly bigger */
    max-width: 95vw; /* Prevent overflow on small screens */
    max-height: 90vh; /* Prevent full screen overflow */
    overflow-y: auto; /* Enable vertical scroll */
    padding: 25px 0 15px 0;
    scrollbar-width: thin;
}
/* _content/RealOxy.Web.Admin/Controls/Cards/AddOrEditModelCard.razor.rz.scp.css */
.popup-header[b-sts2maq3kb] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}
.edit-model-popup[b-sts2maq3kb] {
    width: 540px;
    max-width: 95vw;
    padding: 25px 0 15px 0;
}
.popup-footer[b-sts2maq3kb] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.media-preview-list[b-sts2maq3kb] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}
.media-item[b-sts2maq3kb] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-sts2maq3kb] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-sts2maq3kb] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Perfect vertical centering */
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-sts2maq3kb] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-sts2maq3kb] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-sts2maq3kb] {
        color: var(--color-primary);
    }

/* _content/RealOxy.Web.Admin/Controls/Cards/AddSuperStoreProductCard.razor.rz.scp.css */
/* ===============================
   HEADER
================================ */

.popup-header[b-cpxs15nnnj] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

/* ===============================
   RESPONSIVE POPUP
================================ */



/* ===============================
   FOOTER
================================ */

.popup-footer[b-cpxs15nnnj] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* ===============================
   IMAGE PREVIEW
================================ */

.media-preview-list[b-cpxs15nnnj] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}

.media-item[b-cpxs15nnnj] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-cpxs15nnnj] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-cpxs15nnnj] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-cpxs15nnnj] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-cpxs15nnnj] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-cpxs15nnnj] {
        color: var(--color-primary);
    }

.edit-category-popup[b-cpxs15nnnj] {
    width: 520px; /* Slightly bigger */
    max-width: 95vw; /* Prevent overflow on small screens */
    max-height: 90vh; /* Prevent full screen overflow */
    overflow-y: auto; /* Enable vertical scroll */
    padding: 25px 0 15px 0;
    scrollbar-width: thin;
}
/* _content/RealOxy.Web.Admin/Controls/ProfileVerification/AdminProfileVerificationCard.razor.rz.scp.css */
/* ===============================
   CARD LAYOUT
================================ */

.brand-card[b-z7ur6jtivn] {
    display: flex;
    border-color: 1px solid #00000010;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 10px;
    background: #fffff;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 20px var(--color-shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .brand-card:hover[b-z7ur6jtivn] {
        /*transform: translateY(-2px);*/
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(0, 0, 0, 0.12);
    }

/* ===============================
   LEFT SECTION
================================ */

.brand-card__left[b-z7ur6jtivn] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-card__image[b-z7ur6jtivn] {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    background: #ffffff;
}

.brand-card__image--placeholder[b-z7ur6jtivn] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
}

    .brand-card__image--placeholder i[b-z7ur6jtivn] {
        font-size: 26px;
        color: var(--color-text-muted);
    }

/* ===============================
   CONTENT
================================ */

.brand-card__content[b-z7ur6jtivn] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-card__label[b-z7ur6jtivn] {
    font-size: 12px;
    color: var(--color-text-muted);
}

.brand-card__value[b-z7ur6jtivn] {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ===============================
   RIGHT SECTION
================================ */

.brand-card__right[b-z7ur6jtivn] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.brand-card__actions[b-z7ur6jtivn] {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .brand-card__actions i[b-z7ur6jtivn] {
        font-size: 16px;
        color: var(--color-icon-default);
        cursor: pointer;
        transition: color 0.15s ease;
    }

        .brand-card__actions i:hover[b-z7ur6jtivn] {
            color: var(--color-icon-hover);
        }

/* ===============================
   ARROW BUTTON
================================ */

.arrow-btn[b-z7ur6jtivn] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

    .arrow-btn:hover[b-z7ur6jtivn] {
        background: #e2e6ea;
    }

    .arrow-btn i[b-z7ur6jtivn] {
        font-size: 14px;
    }





.arrow-btn-approve[b-z7ur6jtivn] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.arrow-btn:hover[b-z7ur6jtivn] {
    background: #d4edda;
}

.arrow-btn i[b-z7ur6jtivn] {
    font-size: 14px;
}



.arrow-btn-reject[b-z7ur6jtivn] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.arrow-btn:hover[b-z7ur6jtivn] {
    background: #f8d7da;
}

.arrow-btn i[b-z7ur6jtivn] {
    font-size: 14px;
}
/* _content/RealOxy.Web.Admin/Layout/AdminLayout.razor.rz.scp.css */
.page[b-br0s39qzm7] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-br0s39qzm7] {
    flex: 1;
}

.sidebar[b-br0s39qzm7] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-br0s39qzm7] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-br0s39qzm7]  a, .top-row[b-br0s39qzm7]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-br0s39qzm7]  a:hover, .top-row[b-br0s39qzm7]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-br0s39qzm7]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-br0s39qzm7] {
        justify-content: space-between;
    }

        .top-row[b-br0s39qzm7]  a, .top-row[b-br0s39qzm7]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-br0s39qzm7] {
        flex-direction: row;
    }

    .sidebar[b-br0s39qzm7] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-br0s39qzm7] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-br0s39qzm7]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-br0s39qzm7], article[b-br0s39qzm7] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-br0s39qzm7] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-br0s39qzm7] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* ===============================
   App Navbar (Brand Enhanced)
================================ */

.app-navbar[b-br0s39qzm7] {
    position: sticky;
    top: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px; /* slightly taller = more premium */
    padding: 0 24px;
    /* Brand-aligned dark surface */
    background-color: var(--color-primary);
    /* Subtle depth */
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 12px rgba(0, 0, 0, 0.35);
    /* Red brand accent line */
    border-bottom: 2px solid var(--color-primary);
}

/* Left section */
.app-navbar-left[b-br0s39qzm7] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}
/* Logo */
.app-navbar-logo[b-br0s39qzm7] {
    height: 50%;
}
/* Title */
.app-navbar-title[b-br0s39qzm7] {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-navbar-text);
    text-transform: uppercase;
    position: relative;
}

    /* Optional subtle underline accent under title */
    .app-navbar-title[b-br0s39qzm7]::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 28px;
        height: 2px;
        background-color: var(--color-primary);
        border-radius: 2px;
    }

/* Right section */
.app-navbar-right[b-br0s39qzm7] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-navbar-icon-btn[b-br0s39qzm7] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF; /* makes icons white */
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

    .app-navbar-icon-btn i[b-br0s39qzm7] {
        font-size: 1.25rem;
        color: #FFFFFF; /* ensure icon stays white */
    }
    /* Hover */
    .app-navbar-icon-btn:hover[b-br0s39qzm7] {
        background-color: rgba(0,0,0,0.05);
        border-color: var(--color-bg-white);
    }

    /* Active */
    .app-navbar-icon-btn:active[b-br0s39qzm7] {
        transform: scale(0.95);
    }

    /* Remove focus ring */
    .app-navbar-icon-btn:focus[b-br0s39qzm7],
    .app-navbar-icon-btn:focus-visible[b-br0s39qzm7] {
        outline: none;
        box-shadow: none;
    }

.logo[b-br0s39qzm7] {
    height: 42px;
    object-fit: contain;
    cursor: pointer;
}
/* _content/RealOxy.Web.Admin/Pages/AddBannerPage.razor.rz.scp.css */
.add-brand-heading[b-4y1bm0y8r7] {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow-x: hidden;
    padding: 10px;
    background: white;
}

.add-banner-wrapper[b-4y1bm0y8r7] {
    justify-content: center;
}



/* Header */
.add-banner-header[b-4y1bm0y8r7] {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

/* Body */
.add-banner-body[b-4y1bm0y8r7] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Upload section */
.banner-upload-section[b-4y1bm0y8r7] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.btn-primary-custom[b-4y1bm0y8r7] {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius-input);
    padding: 10px 22px;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
}

    /* Hover */
    .btn-primary-custom:hover[b-4y1bm0y8r7] {
        background-color: var(--color-primary-hover);
        color: #ffffff;
    }

    /* Active / Click */
    .btn-primary-custom:active[b-4y1bm0y8r7] {
        transform: scale(0.98);
    }

    /* Disabled */
    .btn-primary-custom:disabled[b-4y1bm0y8r7] {
        opacity: 0.6;
        cursor: not-allowed;
    }
/* _content/RealOxy.Web.Admin/Pages/AddBrandPage.razor.rz.scp.css */
.add-brand-heading[b-jrkgadredf] {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow-x: hidden;
    padding: 10px;
    background: white;
}
/* _content/RealOxy.Web.Admin/Pages/AdminHomePage.razor.rz.scp.css */
.options-grid[b-yjlepvaje2] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
}

.option-icon[b-yjlepvaje2] {
    font-size: 48px;
    color: var(--color-primary);
}

.option-card[b-yjlepvaje2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-white);
    border: 1px dashed var(--color-border-default);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .option-card:hover[b-yjlepvaje2] {
        border-color: var(--color-primary);
        /*transform: translateY(-2px);*/
    }

.option-title[b-yjlepvaje2] {
    font-size: 15px;
    font-weight: 600;
}
/* Tablet */
@media (min-width: 768px) {
    .options-grid[b-yjlepvaje2] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Desktop */
@media (min-width: 850px) {
    .options-grid[b-yjlepvaje2] {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Desktop */
@media (min-width: 1024px) {
    .options-grid[b-yjlepvaje2] {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* _content/RealOxy.Web.Admin/Pages/AdminLoginPage.razor.rz.scp.css */

/* Page background */
.login-page[b-qanj0yw1ad] {
    background:var(--color-bg-page-start);
}

/* Login card */
.login-form[b-qanj0yw1ad] {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    background-color: var(--color-bg-white);
    box-shadow: 0 10px 30px var(--color-shadow-card);
}

/* Title */
.login-title[b-qanj0yw1ad] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

/* Subtitle */
.login-subtitle[b-qanj0yw1ad] {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin: 0;
}


/* Button */
.login-button[b-qanj0yw1ad] {
    width: 100%;
    background-color: var(--color-primary)
}

/* Loading text */
.login-loading[b-qanj0yw1ad] {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-align: center;
}
/* _content/RealOxy.Web.Admin/Pages/AdminProfileVerificationPage.razor.rz.scp.css */
.listing-cards[b-9w3gv4dfe1] {
    padding: 0px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columns */
    gap: 14px;
}

.excess[b-9w3gv4dfe1] {
    padding: 0px 24px;
}

.brands-list-container[b-9w3gv4dfe1] {
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-bg-white);
}

/* ===============================
   Header Actions Container
================================ */

.list-header-actions[b-9w3gv4dfe1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===============================
   Inspection Search Bar
================================ */

.brand-search[b-9w3gv4dfe1] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-default);
    border-radius: 10px;
    min-width: 260px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .brand-search i[b-9w3gv4dfe1] {
        font-size: 0.9rem;
        color: var(--color-text-muted);
    }

    /* Input */
    .brand-search input[b-9w3gv4dfe1] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 0.85rem;
        background: transparent;
        color: var(--color-text-primary);
    }


    /* Focus */
    .brand-search:focus-within[b-9w3gv4dfe1] {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--color-focus-ring);
    }

    .brand-search input[b-9w3gv4dfe1]::placeholder {
        color: var(--color-text-placeholder);
    }



@media (max-width: 768px) {
    .brand-search[b-9w3gv4dfe1] {
        width: 100%;
        min-width: unset;
    }

    .listing-cards[b-9w3gv4dfe1] {
        display: flex;
        flex-direction: column;
    }
}


/* Desktop: everything inline */
@media (min-width: 768px) {
    .header-search[b-9w3gv4dfe1] {
        flex: 1;
        max-width: 420px;
    }
}

/* Mobile: search moves to next line */
@media (max-width: 767px) {
    .header-search[b-9w3gv4dfe1] {
        order: 10;
        width: 100%;
    }
}

.edit-category-popup[b-9w3gv4dfe1] {
    width: 480px;
    padding: 25px 0 15px 0;
}

.popup-header[b-9w3gv4dfe1] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.popup-footer[b-9w3gv4dfe1] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.media-preview-list[b-9w3gv4dfe1] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}

/* Upload / Preview Box */
.media-item[b-9w3gv4dfe1] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-9w3gv4dfe1] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-9w3gv4dfe1] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Perfect vertical centering */
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-9w3gv4dfe1] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-9w3gv4dfe1] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-9w3gv4dfe1] {
        color: var(--color-primary);
    }
/* _content/RealOxy.Web.Admin/Pages/AmenitiesControlPage.razor.rz.scp.css */
.brands-list-container[b-o9qsdgxawp] {
    padding: 1rem 1.5rem;
    background: white;
    z-index: 10;
}

.list-header-actions[b-o9qsdgxawp] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .brands-list-container[b-o9qsdgxawp] {
        padding: 0.75rem 1rem;
    }
}
/* _content/RealOxy.Web.Admin/Pages/BrandControlPage.razor.rz.scp.css */
.listing-cards[b-3cr5w4s9q0] {
    padding: 0px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columns */
    gap: 14px;
}
.excess[b-3cr5w4s9q0] {
    padding: 0px 24px;
}

.brands-list-container[b-3cr5w4s9q0] {
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-bg-white);
}

/* ===============================
   Header Actions Container
================================ */

.list-header-actions[b-3cr5w4s9q0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===============================
   Inspection Search Bar
================================ */

.brand-search[b-3cr5w4s9q0] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-default);
    border-radius: 10px;
    min-width: 260px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .brand-search i[b-3cr5w4s9q0] {
        font-size: 0.9rem;
        color: var(--color-text-muted);
    }

    /* Input */
    .brand-search input[b-3cr5w4s9q0] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 0.85rem;
        background: transparent;
        color: var(--color-text-primary);
    }


    /* Focus */
    .brand-search:focus-within[b-3cr5w4s9q0] {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--color-focus-ring);
    }

    .brand-search input[b-3cr5w4s9q0]::placeholder {
        color: var(--color-text-placeholder);
    }

/* ===============================
   Mobile Full Width
================================ */

@media (max-width: 768px) {
    .brand-search[b-3cr5w4s9q0] {
        width: 100%;
        min-width: unset;
    }
    .listing-cards[b-3cr5w4s9q0] {
        display: flex;
        flex-direction: column;
    }
    .list-header-actions[b-3cr5w4s9q0] {
        width: 100%;
        display: flex; /* you already have but keep for safety */
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
}
list-style[b-3cr5w4s9q0]{
    background-color:white;
}
/* Desktop: everything inline */
@media (min-width: 768px) {
    .header-search[b-3cr5w4s9q0] {
        flex: 1;
        max-width: 420px;
    }
}

/* Mobile: search moves to next line */
@media (max-width: 767px) {
    .header-search[b-3cr5w4s9q0] {
        order: 10;
        width: 100%;
    }
}

.edit-category-popup[b-3cr5w4s9q0] {
    width: 480px;
    padding: 25px 0 15px 0;
}

.popup-header[b-3cr5w4s9q0] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.popup-footer[b-3cr5w4s9q0] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.media-preview-list[b-3cr5w4s9q0] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}

/* Upload / Preview Box */
.media-item[b-3cr5w4s9q0] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-3cr5w4s9q0] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-3cr5w4s9q0] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Perfect vertical centering */
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-3cr5w4s9q0] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-3cr5w4s9q0] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-3cr5w4s9q0] {
        color: var(--color-primary);
    }

/* _content/RealOxy.Web.Admin/Pages/CategoryControlPage.razor.rz.scp.css */
.listing-cards[b-mejjco5mwy] {
    padding: 0px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columns */
    gap: 14px;
}
.excess[b-mejjco5mwy] {
    padding: 0px 24px;
}

.brands-list-container[b-mejjco5mwy] {
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-bg-white);
}

/* ===============================
   Header Actions Container
================================ */

.list-header-actions[b-mejjco5mwy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}


.brand-search[b-mejjco5mwy] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-default);
    border-radius: 10px;
    min-width: 260px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .brand-search i[b-mejjco5mwy] {
        font-size: 0.9rem;
        color: var(--color-text-muted);
    }

    /* Input */
    .brand-search input[b-mejjco5mwy] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 0.85rem;
        background: transparent;
        color: var(--color-text-primary);
    }


    /* Focus */
    .brand-search:focus-within[b-mejjco5mwy] {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--color-focus-ring);
    }

    .brand-search input[b-mejjco5mwy]::placeholder {
        color: var(--color-text-placeholder);
    }

/* ===============================
   Mobile Full Width
================================ */

@media (max-width: 768px) {
    .brand-search[b-mejjco5mwy] {
        width: 100%;
        min-width: unset;
    }
    .listing-cards[b-mejjco5mwy] {
        display: flex;
        flex-direction: column;
    }
    .list-header-actions[b-mejjco5mwy] {
        width: 100%;
        display: flex; /* you already have but keep for safety */
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
}
list-style[b-mejjco5mwy]{
    background-color:white;
}
/* Desktop: everything inline */
@media (min-width: 768px) {
    .header-search[b-mejjco5mwy] {
        flex: 1;
        max-width: 420px;
    }
}

/* Mobile: search moves to next line */
@media (max-width: 767px) {
    .header-search[b-mejjco5mwy] {
        order: 10;
        width: 100%;
    }
}

.edit-category-popup[b-mejjco5mwy] {
    width: 480px;
    padding: 25px 0 15px 0;
}

.popup-header[b-mejjco5mwy] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.popup-footer[b-mejjco5mwy] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.media-preview-list[b-mejjco5mwy] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}

/* Upload / Preview Box */
.media-item[b-mejjco5mwy] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-mejjco5mwy] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-mejjco5mwy] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Perfect vertical centering */
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-mejjco5mwy] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-mejjco5mwy] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-mejjco5mwy] {
        color: var(--color-primary);
    }

/* _content/RealOxy.Web.Admin/Pages/ListBannerPage.razor.rz.scp.css */

.excess[b-gtfzfoskgb] {
    padding: 0px 24px;
}

.banner-list-container[b-gtfzfoskgb] {
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-bg-white);
}
.banner-container[b-gtfzfoskgb] {
    padding: 0px 24px;
}

.list-header-actions[b-gtfzfoskgb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}


.brand-search[b-gtfzfoskgb] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-default);
    border-radius: 10px;
    min-width: 260px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .brand-search i[b-gtfzfoskgb] {
        font-size: 0.9rem;
        color: var(--color-text-muted);
    }

    /* Input */
    .brand-search input[b-gtfzfoskgb] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 0.85rem;
        background: transparent;
        color: var(--color-text-primary);
    }


    /* Focus */
    .brand-search:focus-within[b-gtfzfoskgb] {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--color-focus-ring);
    }

    .brand-search input[b-gtfzfoskgb]::placeholder {
        color: var(--color-text-placeholder);
    }

/* ===============================
   Mobile Full Width
================================ */

@media (max-width: 768px) {
    .brand-search[b-gtfzfoskgb] {
        width: 100%;
        min-width: unset;
    }
}


/* Desktop: everything inline */
@media (min-width: 768px) {
    .header-search[b-gtfzfoskgb] {
        flex: 1;
        max-width: 420px;
    }
}

/* Mobile: search moves to next line */
@media (max-width: 767px) {
    .header-search[b-gtfzfoskgb] {
        order: 10;
        width: 100%;
    }
}




.brand-card[b-gtfzfoskgb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--color-bg-white);
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 20px var(--color-shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .brand-card:hover[b-gtfzfoskgb] {
        /*transform: translateY(-2px);*/
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(0, 0, 0, 0.12);
    }

.brand-card__content[b-gtfzfoskgb] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-card__label[b-gtfzfoskgb] {
    font-size: 12px;
    color: var(--color-text-muted);
}

.brand-card__value[b-gtfzfoskgb] {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.brand-card__actions[b-gtfzfoskgb] {
    display: flex;
    flex-direction: row;
    gap: 13px;
}

    .brand-card__actions i[b-gtfzfoskgb] {
        font-size: 16px;
        color: var(--color-icon-default);
        transition: color 0.15s ease;
    }

        .brand-card__actions i:hover[b-gtfzfoskgb] {
            color: var(--color-icon-hover);
        }

.listing-cards[b-gtfzfoskgb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

/* Card */
.banner-card[b-gtfzfoskgb] {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

    .banner-card:hover[b-gtfzfoskgb] {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

/* Image */
.banner-image[b-gtfzfoskgb] {
    width: 100%;
    height: 150px;
    background: #f3f3f3;
}

    .banner-image img[b-gtfzfoskgb] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Content */
.banner-content[b-gtfzfoskgb] {
    padding: 12px 14px;
}

.banner-title[b-gtfzfoskgb] {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Actions */
.banner-actions-delete[b-gtfzfoskgb] {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

    .banner-actions i[b-gtfzfoskgb] {
        font-size: 16px;
        cursor: pointer;
    }
.banner-actions-edit[b-gtfzfoskgb] {
    position: absolute;
    top: 10px;
    right: 40px;
    cursor: pointer;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

    .banner-actions i[b-gtfzfoskgb] {
        font-size: 16px;
        cursor: pointer;
    }
/* _content/RealOxy.Web.Admin/Pages/ModelControlPage.razor.rz.scp.css */
.listing-cards[b-pw5cvyp4nl] {
    padding: 0px 24px;

    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columns */

  display: flex;
    flex-direction: column;

    gap: 14px;
}
.excess[b-pw5cvyp4nl] {
    padding: 0px 24px;
}

.models-list-container[b-pw5cvyp4nl] {
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-bg-white);
}

/* ===============================
   Header Actions Container
================================ */

.list-header-actions[b-pw5cvyp4nl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===============================
   Inspection Search Bar
================================ */

.brand-search[b-pw5cvyp4nl] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-default);
    border-radius: 10px;
    min-width: 260px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .brand-search i[b-pw5cvyp4nl] {
        font-size: 0.9rem;
        color: var(--color-text-muted);
    }

    /* Input */
    .brand-search input[b-pw5cvyp4nl] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 0.85rem;
        background: transparent;
        color: var(--color-text-primary);
    }


    /* Focus */
    .brand-search:focus-within[b-pw5cvyp4nl] {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--color-focus-ring);
    }

    .brand-search input[b-pw5cvyp4nl]::placeholder {
        color: var(--color-text-placeholder);
    }

/* ===============================
   Mobile Full Width
================================ */

@media (max-width: 768px) {
    .brand-search[b-pw5cvyp4nl] {
        width: 100%;
        min-width: unset;
    }
<<<<<<<< HEAD:RealOxy.Web.Admin/Pages/ModelControlPage.razor.css
    .listing-cards[b-pw5cvyp4nl] {
        display: flex;
        flex-direction: column;
    }
    .list-header-actions[b-pw5cvyp4nl] {
        width: 100%;
        display: flex; /* you already have but keep for safety */
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
}
list-style[b-pw5cvyp4nl]{
    background-color:white;
========
>>>>>>>> V2-Develop:RealOxy.Web.Admin/Pages/ListBrandPage.razor.css
}
/* Desktop: everything inline */
@media (min-width: 768px) {
    .header-search[b-pw5cvyp4nl] {
        flex: 1;
        max-width: 420px;
    }
}

/* Mobile: search moves to next line */
@media (max-width: 767px) {
    .header-search[b-pw5cvyp4nl] {
        order: 10;
        width: 100%;
    }
}

<<<<<<<< HEAD:RealOxy.Web.Admin/Pages/ModelControlPage.razor.css
.edit-category-popup[b-pw5cvyp4nl] {
    width: 480px;
    padding: 25px 0 15px 0;
========




.brand-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
     background: #f8f9fb; /* 👈 banner soft background */

    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 20px var(--color-shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
>>>>>>>> V2-Develop:RealOxy.Web.Admin/Pages/ListBrandPage.razor.css
}

.popup-header[b-pw5cvyp4nl] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.popup-footer[b-pw5cvyp4nl] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.media-preview-list[b-pw5cvyp4nl] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}

/* Upload / Preview Box */
.media-item[b-pw5cvyp4nl] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-pw5cvyp4nl] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-pw5cvyp4nl] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Perfect vertical centering */
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-pw5cvyp4nl] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-pw5cvyp4nl] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-pw5cvyp4nl] {
        color: var(--color-primary);
    }

/* _content/RealOxy.Web.Admin/Pages/ReferalUserListPage.razor.rz.scp.css */

.bg-success-subtle[b-qrfvdl98ij] {
    background-color: #d1e7dd;
}

.text-success[b-qrfvdl98ij] {
    color: #0f5132 !important;
}

.bg-primary-subtle[b-qrfvdl98ij] {
    background-color: #f3efe9;
}

.btn-redeem[b-qrfvdl98ij] {
    background-color: #674e34 !important;
    border-color: #674e34 !important;
    color: white !important;
    box-shadow: 0 4px 6px rgba(103, 78, 52, 0.2);
}

    .btn-redeem:hover[b-qrfvdl98ij] {
        background-color: #5a432d !important;
        border-color: #5a432d !important;
        color: white !important;
        transform: translateY(-1px);
    }

    .btn-redeem:active[b-qrfvdl98ij] {
        transform: translateY(0);
    }

/* Success Icon Animation */
.success-icon-wrapper[b-qrfvdl98ij] {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.success-icon-circle[b-qrfvdl98ij] {
    width: 100%;
    height: 100%;
    background-color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    z-index: 2;
    position: relative;
    animation: scaleIn-b-qrfvdl98ij 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-icon-ring[b-qrfvdl98ij] {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #10B981;
    border-radius: 50%;
    opacity: 0;
    animation: ringOut-b-qrfvdl98ij 1.5s ease-out infinite;
}

@keyframes scaleIn-b-qrfvdl98ij {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ringOut-b-qrfvdl98ij {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
/* Search Bar Styling */
.brand-search[b-qrfvdl98ij] {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 14px !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    min-width: 280px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.brand-search:focus-within[b-qrfvdl98ij] {
    border-color: #674e34 !important;
    box-shadow: 0 0 0 3px rgba(103, 78, 52, 0.15) !important;
}

.brand-search input[b-qrfvdl98ij], [b-qrfvdl98ij] .brand-search input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100% !important;
    font-size: 14px !important;
    background: transparent !important;
    color: #1f2937 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.brand-search input[b-qrfvdl98ij]::placeholder, [b-qrfvdl98ij] .brand-search input::placeholder {
    color: #9ca3af !important;
}

.brand-search i[b-qrfvdl98ij], [b-qrfvdl98ij] .brand-search i {
    color: #9ca3af !important;
    font-size: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    .brand-search[b-qrfvdl98ij] {
        min-width: 100% !important;
    }
}

.btn-refresh[b-qrfvdl98ij] {
    background-color: #674e34 !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    transition: all 0.2s ease;
    min-width: 44px;
    height: 44px;
}

    .btn-refresh:hover[b-qrfvdl98ij] {
        background-color: #5a432d !important;
        transform: rotate(30deg);
    }

    .btn-refresh:active[b-qrfvdl98ij] {
        transform: scale(0.95);
    }

    .btn-refresh i[b-qrfvdl98ij] {
        color: white !important;
    }


/* _content/RealOxy.Web.Admin/Pages/SettingsControlPage.razor.rz.scp.css */
.settings-page[b-hnh82yc8lq] {
    max-width: 700px;
    margin-top: 2rem;
}

.custom-switch[b-hnh82yc8lq] {
    width: 3.5rem !important;
    height: 1.75rem !important;
    cursor: pointer;
}

.custom-switch:checked[b-hnh82yc8lq] {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.version-tag[b-hnh82yc8lq] {
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background-color: var(--color-primary-extra-light) !important;
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary-light) !important;
}

.version-tag:hover[b-hnh82yc8lq] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.fs-x-small[b-hnh82yc8lq] {
    font-size: 0.65rem;
}

.btn-close:focus[b-hnh82yc8lq] {
    box-shadow: none;
}

.italic[b-hnh82yc8lq] {
    font-style: italic;
}

.bg-primary-subtle[b-hnh82yc8lq] {
    background-color: var(--color-primary-extra-light) !important;
}

.btn-primary[b-hnh82yc8lq] {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled)[b-hnh82yc8lq] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-primary-soft);
}

.btn-primary:active:not(:disabled)[b-hnh82yc8lq] {
    transform: translateY(0);
}

.theme-text-primary[b-hnh82yc8lq] {
    color: var(--color-primary);
}

.btn-theme-outline[b-hnh82yc8lq] {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-theme-outline:hover[b-hnh82yc8lq] {
    background-color: var(--color-primary);
    color: white;
}

/* _content/RealOxy.Web.Admin/Pages/SuperStoreControlPage.razor.rz.scp.css */
.listing-cards[b-xzppvcuc3s] {
    padding: 0px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columns */
    gap: 14px;
}
.excess[b-xzppvcuc3s] {
    padding: 0px 24px;
}

.brands-list-container[b-xzppvcuc3s] {
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-bg-white);
}

/* ===============================
   Header Actions Container
================================ */

.list-header-actions[b-xzppvcuc3s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}


.brand-search[b-xzppvcuc3s] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-default);
    border-radius: 10px;
    min-width: 260px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .brand-search i[b-xzppvcuc3s] {
        font-size: 0.9rem;
        color: var(--color-text-muted);
    }

    /* Input */
    .brand-search input[b-xzppvcuc3s] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 0.85rem;
        background: transparent;
        color: var(--color-text-primary);
    }


    /* Focus */
    .brand-search:focus-within[b-xzppvcuc3s] {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--color-focus-ring);
    }

    .brand-search input[b-xzppvcuc3s]::placeholder {
        color: var(--color-text-placeholder);
    }

/* ===============================
   Mobile Full Width
================================ */

@media (max-width: 768px) {
    .brand-search[b-xzppvcuc3s] {
        width: 100%;
        min-width: unset;
    }
    .listing-cards[b-xzppvcuc3s] {
        display: flex;
        flex-direction: column;
    }
    .list-header-actions[b-xzppvcuc3s] {
        width: 100%;
        display: flex; /* you already have but keep for safety */
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
}
list-style[b-xzppvcuc3s]{
    background-color:white;
}
/* Desktop: everything inline */
@media (min-width: 768px) {
    .header-search[b-xzppvcuc3s] {
        flex: 1;
        max-width: 420px;
    }
}

/* Mobile: search moves to next line */
@media (max-width: 767px) {
    .header-search[b-xzppvcuc3s] {
        order: 10;
        width: 100%;
    }
}

.edit-category-popup[b-xzppvcuc3s] {
    width: 480px;
    padding: 25px 0 15px 0;
}

.popup-header[b-xzppvcuc3s] {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.popup-footer[b-xzppvcuc3s] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.media-preview-list[b-xzppvcuc3s] {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px 0;
}

/* Upload / Preview Box */
.media-item[b-xzppvcuc3s] {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed var(--color-border-default);
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    /* Image Preview */
    .media-item img[b-xzppvcuc3s] {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

/* Upload Label */
.image-upload[b-xzppvcuc3s] {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Perfect vertical centering */
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

    /* Upload Icon */
    .image-upload i[b-xzppvcuc3s] {
        font-size: 24px;
        color: var(--color-icon-default);
    }

/* Hover Effect */
.media-item:hover[b-xzppvcuc3s] {
    border-color: var(--color-primary);
    background: #fafafa;
}

    .media-item:hover .image-upload[b-xzppvcuc3s] {
        color: var(--color-primary);
    }

/* _content/RealOxy.Web.Admin/Pages/UsersListingPage.razor.rz.scp.css */
