/*
 * =========================================================
 * NAIJATRAFFIC SEO APPLICATION
 * PREMIUM SAAS APPLICATION STYLES
 * =========================================================
 */


/* =========================================================
   GLOBAL APP VARIABLES
   ========================================================= */

:root {

    --nt-green: #00a63f;
    --nt-green-dark: #008f36;
    --nt-green-light: #e9f8ef;

    --nt-black: #111827;
    --nt-dark: #1f2937;
    --nt-text: #374151;
    --nt-muted: #6b7280;
    --nt-light: #9ca3af;

    --nt-border: #e5e7eb;
    --nt-border-light: #eef0f2;

    --nt-background: #f7f8fa;
    --nt-white: #ffffff;

    --nt-danger: #dc2626;
    --nt-danger-light: #fef2f2;

    --nt-success: #16a34a;
    --nt-success-light: #f0fdf4;

    --nt-shadow:
        0 10px 30px rgba(17, 24, 39, 0.06);

    --nt-shadow-lg:
        0 25px 70px rgba(17, 24, 39, 0.15);

    --nt-radius: 14px;

}


/* =========================================================
   GLOBAL APP RESET
   ========================================================= */

html {
    overflow-x: hidden;
    max-width: 100%;
}


body {
    max-width: 100%;
    overflow-x: hidden;
}


.seo-app,
.seo-app *,
.seo-auth-overlay,
.seo-auth-overlay *,
.seo-modal-overlay,
.seo-modal-overlay * {

    box-sizing: border-box;

}


.seo-app {

    width: 100%;
    max-width: 100%;
    min-width: 0;

    overflow-x: hidden;

}


.seo-app img,
.seo-app svg,
.seo-app video,
.seo-app iframe {

    max-width: 100%;

}


.seo-app a,
.seo-auth-overlay a,
.seo-modal-overlay a {

    max-width: 100%;

}


.seo-app button,
.seo-auth-overlay button,
.seo-modal-overlay button {

    font-family: inherit;

    -webkit-appearance: none;
    appearance: none;

    margin: 0;

    text-transform: none;

    box-shadow: none;

}


.seo-app input,
.seo-app select,
.seo-app textarea,
.seo-auth-overlay input,
.seo-auth-overlay select,
.seo-auth-overlay textarea,
.seo-modal-overlay input,
.seo-modal-overlay select,
.seo-modal-overlay textarea {

    font-family: inherit;

    max-width: 100%;

}


.seo-app *,
.seo-auth-overlay *,
.seo-modal-overlay * {

    overflow-wrap: break-word;

}


/* =========================================================
   BODY WHEN MODALS ARE OPEN
   ========================================================= */

body.seo-auth-open,
body.seo-modal-open {

    overflow: hidden;

}


/* =========================================================
   MAIN APPLICATION
   ========================================================= */

.seo-app {

    display: flex;

    min-height: 100vh;

    background:
        var(--nt-background);

    color:
        var(--nt-text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    position: relative;

    isolation: isolate;

}


/* =========================================================
   SIDEBAR
   ========================================================= */

.seo-sidebar {

    position: fixed;

    left: 0;
    top: 0;
    bottom: 0;

    width: 255px;

    background:
        var(--nt-white);

    border-right:
        1px solid var(--nt-border);

    display: flex;

    flex-direction: column;

    z-index: 100;

    min-width: 0;

}


/* =========================================================
   LOGO
   ========================================================= */

.seo-logo {

    height: 76px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        0 22px;

    border-bottom:
        1px solid var(--nt-border-light);

    min-width: 0;

}


.seo-logo-mark {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 10px;

    background:
        var(--nt-green);

    color:
        var(--nt-white);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: -0.5px;

}


.seo-logo-text {

    min-width: 0;

    color:
        var(--nt-black);

    font-size: 15px;

    font-weight: 750;

    letter-spacing: -0.3px;

    overflow-wrap: anywhere;

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.seo-navigation {

    flex: 1;

    min-height: 0;
    min-width: 0;

    overflow-y: auto;
    overflow-x: hidden;

    padding:
        18px 12px;

}


.seo-nav-item,
.seo-nav-dropdown {

    width: 100%;
    max-width: 100%;

    min-height: 44px;

    border: 0;

    background: transparent;

    color:
        var(--nt-muted);

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        10px 12px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.seo-nav-item:hover,
.seo-nav-dropdown:hover {

    background:
        #f5f7f6;

    color:
        var(--nt-black);

}


.seo-nav-item.active {

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

}


.seo-nav-icon {

    width: 20px;

    flex:
        0 0 20px;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    font-size: 16px;

}


.seo-nav-group {

    margin-top: 4px;

    min-width: 0;

}


.seo-nav-dropdown {

    justify-content:
        space-between;

}


.seo-nav-dropdown-left {

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 0;

}


.seo-nav-arrow {

    font-size: 12px;

    flex: 0 0 auto;

    transition:
        transform 0.2s ease;

}


.seo-nav-dropdown[aria-expanded="true"]
.seo-nav-arrow {

    transform:
        rotate(180deg);

}


.seo-nav-submenu {

    display: none;

    padding:
        3px 0 7px 43px;

    min-width: 0;

}


.seo-nav-submenu.is-open {

    display: block;

}


.seo-nav-subitem {

    display: block;

    max-width: 100%;

    padding:
        8px 10px;

    color:
        var(--nt-muted);

    text-decoration: none;

    font-size: 12px;

    border-radius: 7px;

    overflow-wrap: anywhere;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.seo-nav-subitem:hover {

    background:
        #f6f7f8;

    color:
        var(--nt-green);

}


/* =========================================================
   SIDEBAR BOTTOM
   ========================================================= */

.seo-sidebar-bottom {

    padding:
        15px;

    border-top:
        1px solid var(--nt-border-light);

    min-width: 0;

}


.seo-plan-card {

    background:
        #f7faf8;

    border:
        1px solid #e1eee5;

    border-radius:
        12px;

    padding:
        15px;

    min-width: 0;

}


.seo-plan-small {

    color:
        var(--nt-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        1px;

    margin-bottom:
        5px;

}


.seo-plan-name {

    color:
        var(--nt-black);

    font-size: 14px;

    font-weight: 750;

    margin-bottom:
        12px;

    overflow-wrap: anywhere;

}


.seo-upgrade-button {

    width: 100%;
    max-width: 100%;

    border: 0;

    border-radius: 8px;

    background:
        var(--nt-green);

    color:
        var(--nt-white);

    padding:
        9px 12px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.seo-upgrade-button:hover {

    background:
        var(--nt-green-dark);

    transform:
        translateY(-1px);

}


/* =========================================================
   MAIN AREA
   ========================================================= */

.seo-main {

    width: calc(100% - 255px);

    margin-left: 255px;

    min-height: 100vh;

    min-width: 0;

    overflow-x: hidden;

}


/* =========================================================
   TOP BAR
   ========================================================= */

.seo-topbar {

    width: 100%;
    max-width: 100%;

    height: 76px;

    background:
        var(--nt-white);

    border-bottom:
        1px solid var(--nt-border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 28px;

    position: sticky;

    top: 0;

    z-index: 50;

    min-width: 0;

}


/* =========================================================
   SEARCH
   ========================================================= */

.seo-top-search {

    width:
        min(400px, 45%);

    height: 40px;

    border:
        1px solid var(--nt-border);

    border-radius:
        9px;

    background:
        #fafafa;

    display: flex;

    align-items: center;

    padding:
        0 13px;

    gap: 9px;

    min-width: 0;

    flex: 0 1 auto;

}


.seo-top-search > span {

    color:
        var(--nt-light);

    font-size: 18px;

    flex: 0 0 auto;

}


.seo-top-search input {

    width: 100%;

    min-width: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color:
        var(--nt-black);

    font-size: 12px;

}


.seo-top-search input::placeholder {

    color:
        #9ca3af;

}


/* =========================================================
   TOP RIGHT
   ========================================================= */

.seo-top-right {

    display: flex;

    align-items: center;

    gap: 9px;

    position: relative;

    min-width: 0;

    flex: 0 0 auto;

}


/* =========================================================
   TOP BUTTON
   ========================================================= */

.seo-top-button {

    width: 37px;
    height: 37px;

    flex: 0 0 37px;

    border:
        1px solid var(--nt-border);

    border-radius: 9px;

    background:
        var(--nt-white);

    color:
        var(--nt-muted);

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 14px;

}


.seo-top-button:hover {

    color:
        var(--nt-green);

    border-color:
        #ccebd7;

}


/* =========================================================
   ACCOUNT
   ========================================================= */

.seo-account {

    min-height: 40px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        4px 8px;

    border-radius: 9px;

    cursor: pointer;

    color:
        var(--nt-dark);

    font-size: 12px;

    font-weight: 650;

    transition:
        background 0.2s ease;

    min-width: 0;

    max-width: 100%;

}


.seo-account:hover {

    background:
        #f5f7f6;

}


.seo-avatar {

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 50%;

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;

    font-weight: 800;

}


.seo-avatar-large {

    width: 42px;
    height: 42px;

    flex:
        0 0 42px;

}


/* =========================================================
   ACCOUNT DROPDOWN
   ========================================================= */

.seo-account-dropdown {

    position: absolute;

    right: 0;

    top: calc(100% + 10px);

    width: 260px;

    max-width: calc(100vw - 30px);

    background:
        var(--nt-white);

    border:
        1px solid var(--nt-border);

    border-radius:
        13px;

    box-shadow:
        var(--nt-shadow-lg);

    padding:
        8px;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-6px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

}


.seo-account-dropdown.is-open {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.seo-account-dropdown-header {

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        10px;

    min-width: 0;

}


.seo-account-dropdown-header > div {

    min-width: 0;

}


.seo-account-dropdown-header strong {

    display: block;

    color:
        var(--nt-black);

    font-size: 13px;

    margin-bottom:
        3px;

    overflow-wrap: anywhere;

}


.seo-account-dropdown-header span {

    display: block;

    color:
        var(--nt-muted);

    font-size: 10px;

    word-break: break-word;

    overflow-wrap: anywhere;

}


.seo-account-dropdown-divider {

    height: 1px;

    background:
        var(--nt-border-light);

    margin:
        4px 0;

}


.seo-account-dropdown-item {

    width: 100%;
    max-width: 100%;

    border: 0;

    background: transparent;

    color:
        var(--nt-text);

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

}


.seo-account-dropdown-item:hover {

    background:
        #f6f8f7;

    color:
        var(--nt-green);

}


.seo-logout-item:hover {

    color:
        var(--nt-danger);

    background:
        var(--nt-danger-light);

}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.seo-mobile-menu {

    display: none;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border:
        1px solid var(--nt-border);

    border-radius: 9px;

    background:
        var(--nt-white);

    color:
        var(--nt-dark);

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 4px;

    cursor: pointer;

    padding: 0;

}


.seo-mobile-menu span {

    width: 17px;

    height: 2px;

    border-radius: 2px;

    background:
        var(--nt-dark);

}


/* =========================================================
   CONTENT
   ========================================================= */

.seo-content {

    width: 100%;
    max-width: 1500px;

    margin:
        0 auto;

    padding:
        32px;

    min-width: 0;

}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.seo-page-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 20px;

    margin-bottom:
        26px;

    min-width: 0;

    max-width: 100%;

}


.seo-page-header > * {

    min-width: 0;

    max-width: 100%;

}


.seo-breadcrumb {

    color:
        var(--nt-green);

    font-size: 11px;

    font-weight: 750;

    text-transform:
        uppercase;

    letter-spacing:
        0.8px;

    margin-bottom:
        7px;

}


.seo-page-header h1 {

    margin:
        0 0 5px;

    color:
        var(--nt-black);

    font-size:
        clamp(25px, 3vw, 34px);

    line-height:
        1.15;

    letter-spacing:
        -1px;

    overflow-wrap:
        anywhere;

}


.seo-page-header p {

    margin:
        0;

    color:
        var(--nt-muted);

    font-size: 13px;

    line-height: 1.5;

    overflow-wrap: anywhere;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.seo-primary-button {

    border: 0;

    border-radius: 9px;

    background:
        var(--nt-green);

    color:
        var(--nt-white);

    padding:
        11px 17px;

    min-height: 42px;

    font-size: 12px;

    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(0, 166, 63, 0.16);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.seo-primary-button:hover {

    background:
        var(--nt-green-dark);

    transform:
        translateY(-1px);

    box-shadow:
        0 8px 18px rgba(0, 166, 63, 0.22);

}


.seo-primary-button:disabled {

    opacity:
        0.65;

    cursor:
        not-allowed;

    transform:
        none;

}


.seo-secondary-button {

    border:
        1px solid var(--nt-border);

    border-radius: 9px;

    background:
        var(--nt-white);

    color:
        var(--nt-text);

    padding:
        11px 17px;

    min-height:
        42px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

}


.seo-secondary-button:hover {

    background:
        #f8f9fa;

}


/* =========================================================
   WELCOME SECTION
   ========================================================= */

.seo-welcome {

    width: 100%;
    max-width: 100%;

    min-height:
        245px;

    border-radius:
        17px;

    padding:
        34px;

    margin-bottom:
        24px;

    background:
        linear-gradient(
            135deg,
            #0b3020 0%,
            #075a2a 55%,
            #00a63f 100%
        );

    color:
        var(--nt-white);

    display: flex;

    align-items: center;

    justify-content: space-between;

    overflow: hidden;

    position: relative;

}


.seo-welcome-content {

    max-width:
        650px;

    min-width: 0;

    position: relative;

    z-index: 2;

}


.seo-welcome-label {

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        1.4px;

    opacity:
        0.7;

    margin-bottom:
        9px;

}


.seo-welcome h2 {

    margin:
        0 0 9px;

    color:
        var(--nt-white);

    font-size:
        clamp(24px, 3vw, 32px);

    line-height:
        1.15;

    letter-spacing:
        -1px;

    overflow-wrap:
        anywhere;

}


.seo-welcome p {

    margin:
        0 0 20px;

    max-width:
        590px;

    color:
        rgba(255,255,255,0.78);

    font-size: 13px;

    line-height:
        1.65;

    overflow-wrap:
        anywhere;

}


.seo-welcome .seo-primary-button {

    background:
        var(--nt-white);

    color:
        var(--nt-green);

    box-shadow:
        none;

}


.seo-welcome .seo-primary-button:hover {

    background:
        #f1fff5;

}


.seo-welcome-graphic {

    width: 260px;
    height: 260px;

    flex: 0 0 260px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

}


.seo-graphic-circle {

    width: 165px;
    height: 165px;

    border:
        1px solid rgba(255,255,255,0.24);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(255,255,255,0.18);

    font-size: 35px;

    font-weight: 900;

    letter-spacing:
        -2px;

    box-shadow:
        0 0 0 25px rgba(255,255,255,0.03),
        0 0 0 50px rgba(255,255,255,0.02);

}


/* =========================================================
   PANELS
   ========================================================= */

.seo-panel {

    width: 100%;
    max-width: 100%;

    background:
        var(--nt-white);

    border:
        1px solid var(--nt-border);

    border-radius:
        var(--nt-radius);

    box-shadow:
        var(--nt-shadow);

    min-width: 0;

}


.seo-panel-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding:
        21px 22px;

    border-bottom:
        1px solid var(--nt-border-light);

    min-width: 0;

    max-width: 100%;

}


.seo-panel-header > * {

    min-width: 0;

    max-width: 100%;

}


.seo-panel-header h3 {

    margin:
        0 0 5px;

    color:
        var(--nt-black);

    font-size: 14px;

    font-weight: 750;

    overflow-wrap: anywhere;

}


.seo-panel-header p {

    margin:
        0;

    color:
        var(--nt-muted);

    font-size: 11px;

    line-height:
        1.5;

    overflow-wrap: anywhere;

}


.seo-panel-header a {

    color:
        var(--nt-green);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    flex: 0 0 auto;

}


/* =========================================================
   PROJECTS
   ========================================================= */

.seo-projects-panel {

    margin-bottom:
        24px;

}


.seo-project-count {

    white-space:
        nowrap;

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

    padding:
        6px 9px;

    border-radius:
        20px;

    font-size: 10px;

    font-weight: 750;

    flex: 0 0 auto;

}


.seo-projects-list {

    padding:
        5px 22px 18px;

    min-width: 0;

    max-width: 100%;

}


.seo-project-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        17px 0;

    border-bottom:
        1px solid var(--nt-border-light);

    min-width: 0;

    max-width: 100%;

}


.seo-project-item:last-child {

    border-bottom:
        0;

}


.seo-project-main {

    min-width: 0;

    flex: 1;

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: 100%;

}


.seo-project-icon {

    width: 40px;
    height: 40px;

    flex:
        0 0 40px;

    border-radius: 10px;

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 15px;

}


.seo-project-info {

    min-width: 0;

    flex: 1;

    max-width: 100%;

}


.seo-project-info strong {

    display: block;

    color:
        var(--nt-black);

    font-size: 12px;

    margin-bottom:
        3px;

    overflow-wrap:
        anywhere;

}


.seo-project-info a {

    display: block;

    max-width:
        550px;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;

    color:
        var(--nt-green);

    font-size: 10px;

    text-decoration: none;

}


.seo-project-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top:
        6px;

    max-width: 100%;

}


.seo-project-meta span {

    background:
        #f4f5f6;

    color:
        var(--nt-muted);

    padding:
        4px 7px;

    border-radius:
        5px;

    font-size: 9px;

    max-width: 100%;

    overflow-wrap: anywhere;

}


.seo-project-status {

    color:
        var(--nt-success);

    font-size: 10px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 6px;

    flex: 0 0 auto;

}


.seo-status-dot {

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    background:
        var(--nt-success);

    border-radius: 50%;

}


/* =========================================================
   EMPTY STATES
   ========================================================= */

.seo-empty {

    min-height:
        155px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding:
        30px;

    gap: 6px;

    max-width: 100%;

}


.seo-empty-icon {

    width: 40px;
    height: 40px;

    border-radius: 11px;

    background:
        #f5f7f6;

    color:
        var(--nt-light);

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom:
        5px;

}


.seo-empty strong {

    color:
        var(--nt-dark);

    font-size: 12px;

    max-width: 100%;

    overflow-wrap: anywhere;

}


.seo-empty span {

    color:
        var(--nt-muted);

    font-size: 10px;

    max-width:
        330px;

    line-height:
        1.5;

    overflow-wrap: anywhere;

}


/* =========================================================
   STATS
   ========================================================= */

.seo-stats {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        15px;

    margin-bottom:
        24px;

    width: 100%;

    min-width: 0;

}


.seo-stat-card {

    background:
        var(--nt-white);

    border:
        1px solid var(--nt-border);

    border-radius:
        var(--nt-radius);

    padding:
        18px;

    box-shadow:
        var(--nt-shadow);

    min-width: 0;

    max-width: 100%;

    overflow: hidden;

}


.seo-stat-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    margin-bottom:
        16px;

    min-width: 0;

}


.seo-stat-top > span {

    color:
        var(--nt-muted);

    font-size: 10px;

    font-weight: 650;

    min-width: 0;

    overflow-wrap: anywhere;

}


.seo-stat-icon {

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 8px;

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;

}


.seo-stat-card > strong {

    display: block;

    color:
        var(--nt-black);

    font-size: 25px;

    line-height: 1;

    margin-bottom:
        7px;

    overflow-wrap: anywhere;

}


.seo-stat-card > small {

    color:
        var(--nt-light);

    font-size: 9px;

    overflow-wrap: anywhere;

}


/* =========================================================
   DASHBOARD GRID
   ========================================================= */

.seo-dashboard-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(300px, 1fr);

    gap:
        20px;

    margin-bottom:
        24px;

    width: 100%;

    min-width: 0;

}


.seo-dashboard-grid > * {

    min-width: 0;
    max-width: 100%;

}


.seo-performance-panel {

    min-width:
        0;

}


/* =========================================================
   SELECT
   ========================================================= */

.seo-panel-header select {

    border:
        1px solid var(--nt-border);

    border-radius:
        7px;

    background:
        var(--nt-white);

    color:
        var(--nt-muted);

    padding:
        7px 10px;

    font-size: 10px;

    outline: none;

    max-width: 100%;

    min-width: 0;

}


/* =========================================================
   CHART
   ========================================================= */

.seo-chart {

    min-height:
        285px;

    position: relative;

    margin:
        20px;

    border:
        1px solid var(--nt-border-light);

    border-radius:
        10px;

    overflow: hidden;

    background:
        #fcfdfc;

    max-width: calc(100% - 40px);

}


.seo-chart-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            to bottom,
            #edf1ee 1px,
            transparent 1px
        );

    background-size:
        100% 25%;

    opacity:
        0.8;

}


.seo-chart-message {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;

    max-width: 100%;

}


.seo-chart-icon {

    width: 45px;
    height: 45px;

    border-radius: 13px;

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom:
        10px;

}


.seo-chart-message strong {

    color:
        var(--nt-dark);

    font-size: 12px;

    margin-bottom:
        4px;

    overflow-wrap: anywhere;

}


.seo-chart-message span {

    color:
        var(--nt-muted);

    font-size: 10px;

    overflow-wrap: anywhere;

}


/* =========================================================
   TOOLS
   ========================================================= */

.seo-tools-panel {

    margin-bottom:
        35px;

}


.seo-tools {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        12px;

    padding:
        20px 22px 22px;

    width: 100%;

    min-width: 0;

}


.seo-tool {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        14px;

    border:
        1px solid var(--nt-border-light);

    border-radius:
        10px;

    color:
        var(--nt-text);

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;

    min-width: 0;

    max-width: 100%;

}


.seo-tool:hover {

    border-color:
        #cbe8d4;

    transform:
        translateY(-2px);

    box-shadow:
        var(--nt-shadow);

}


.seo-tool-icon {

    width: 36px;
    height: 36px;

    flex:
        0 0 36px;

    border-radius: 9px;

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

}


.seo-tool > div:nth-child(2) {

    min-width:
        0;

    flex: 1;

    max-width: 100%;

}


.seo-tool strong {

    display: block;

    color:
        var(--nt-black);

    font-size: 11px;

    margin-bottom:
        3px;

    overflow-wrap:
        anywhere;

}


.seo-tool span {

    display: block;

    color:
        var(--nt-muted);

    font-size: 9px;

    line-height:
        1.4;

    overflow-wrap:
        anywhere;

}


.seo-tool b {

    color:
        var(--nt-light);

    font-size: 14px;

    flex: 0 0 auto;

}


/* =========================================================
   MODAL BASE
   ========================================================= */

.seo-modal-overlay,
.seo-auth-overlay {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    min-height: 100vh;
    min-height: 100dvh;

    background:
        rgba(15, 23, 42, 0.62);

    backdrop-filter:
        blur(6px);

    -webkit-backdrop-filter:
        blur(6px);

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        20px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

}


.seo-modal-overlay {

    z-index:
        1000;

}


.seo-auth-overlay {

    z-index:
        2000;

}


.seo-modal-overlay.is-open,
.seo-auth-overlay.is-open {

    opacity: 1;

    visibility: visible;

    pointer-events:
        auto;

}


/* =========================================================
   PROJECT MODAL
   ========================================================= */

.seo-modal {

    width:
        min(100%, 560px);

    max-width: 100%;

    max-height:
        calc(100vh - 40px);

    max-height:
        calc(100dvh - 40px);

    overflow-y:
        auto;

    background:
        var(--nt-white);

    border-radius:
        17px;

    border:
        1px solid rgba(255,255,255,0.4);

    box-shadow:
        var(--nt-shadow-lg);

    transform:
        translateY(15px)
        scale(0.98);

    transition:
        transform 0.25s ease;

}


/* =========================================================
   PROJECT MODAL OPEN
   ========================================================= */

.seo-modal-overlay.is-open
.seo-modal {

    transform:
        translateY(0)
        scale(1);

}


.seo-modal-header {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding:
        26px 27px 20px;

    border-bottom:
        1px solid var(--nt-border-light);

    min-width: 0;

}


.seo-modal-header > div {

    min-width: 0;

}


.seo-modal-eyebrow {

    color:
        var(--nt-green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        1px;

    margin-bottom:
        7px;

}


.seo-modal-header h2 {

    margin:
        0 0 5px;

    color:
        var(--nt-black);

    font-size: 22px;

    letter-spacing:
        -0.6px;

    overflow-wrap:
        anywhere;

}


.seo-modal-header p {

    margin:
        0;

    color:
        var(--nt-muted);

    font-size: 11px;

    line-height:
        1.5;

    overflow-wrap:
        anywhere;

}


.seo-modal-close {

    width: 34px;
    height: 34px;

    flex:
        0 0 34px;

    border:
        1px solid var(--nt-border);

    border-radius: 8px;

    background:
        var(--nt-white);

    color:
        var(--nt-muted);

    font-size: 20px;

    line-height: 1;

    cursor: pointer;

    padding: 0;

}


.seo-modal-close:hover {

    background:
        #f6f7f8;

    color:
        var(--nt-black);

}


.seo-project-form {

    padding:
        24px 27px 27px;

    min-width: 0;

}


.seo-form-group {

    margin-bottom:
        18px;

    min-width: 0;

}


.seo-form-group label {

    display: block;

    color:
        var(--nt-dark);

    font-size: 11px;

    font-weight: 700;

    margin-bottom:
        7px;

}


.seo-form-group input,
.seo-form-group select {

    width: 100%;

    height: 45px;

    border:
        1px solid var(--nt-border);

    border-radius:
        9px;

    background:
        var(--nt-white);

    color:
        var(--nt-black);

    padding:
        0 12px;

    outline: none;

    font-size: 12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.seo-form-group input:focus,
.seo-form-group select:focus {

    border-color:
        var(--nt-green);

    box-shadow:
        0 0 0 3px rgba(0,166,63,0.09);

}


.seo-form-group small {

    display: block;

    margin-top:
        6px;

    color:
        var(--nt-light);

    font-size: 9px;

    overflow-wrap: anywhere;

}


.seo-form-row {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap:
        13px;

    min-width: 0;

}


.seo-modal-actions {

    display: flex;

    justify-content: flex-end;

    gap:
        9px;

    padding-top:
        7px;

}


/* =========================================================
   AUTHENTICATION MODAL
   ========================================================= */

.seo-auth-modal {

    width:
        min(100%, 470px);

    max-width: 100%;

    max-height:
        calc(100vh - 30px);

    max-height:
        calc(100dvh - 30px);

    overflow-y:
        auto;

    background:
        var(--nt-white);

    border-radius:
        20px;

    border:
        1px solid rgba(255,255,255,0.5);

    box-shadow:
        0 30px 90px rgba(0,0,0,0.22);

    padding:
        30px;

    position: relative;

    min-width: 0;

    transform:
        translateY(18px)
        scale(0.97);

    transition:
        transform 0.28s ease;

}


.seo-auth-overlay.is-open
.seo-auth-modal {

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   AUTH CLOSE
   ========================================================= */

.seo-auth-close {

    position: absolute;

    right: 18px;
    top: 18px;

    width: 34px;
    height: 34px;

    border:
        1px solid var(--nt-border);

    border-radius: 9px;

    background:
        var(--nt-white);

    color:
        var(--nt-muted);

    font-size: 20px;

    line-height: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 3;

    padding: 0;

}


.seo-auth-close:hover {

    background:
        #f5f7f6;

    color:
        var(--nt-black);

}


/* =========================================================
   AUTH BRAND
   ========================================================= */

.seo-auth-brand {

    display: flex;

    align-items: center;

    gap: 11px;

    padding-right:
        45px;

    margin-bottom:
        28px;

    min-width: 0;

}


.seo-auth-logo {

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    border-radius: 12px;

    background:
        var(--nt-green);

    color:
        var(--nt-white);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;

    font-weight: 850;

    box-shadow:
        0 8px 20px rgba(0,166,63,0.2);

}


.seo-auth-brand > div {

    min-width: 0;

}


.seo-auth-brand strong {

    display: block;

    color:
        var(--nt-black);

    font-size: 14px;

    font-weight: 800;

    margin-bottom:
        3px;

    overflow-wrap: anywhere;

}


.seo-auth-brand span {

    display: block;

    color:
        var(--nt-muted);

    font-size: 9px;

    overflow-wrap: anywhere;

}


/* =========================================================
   AUTH HEADING
   ========================================================= */

.seo-auth-heading {

    margin-bottom:
        21px;

    min-width: 0;

}


.seo-auth-eyebrow {

    display: block;

    color:
        var(--nt-green);

    font-size: 9px;

    font-weight: 850;

    letter-spacing:
        1.2px;

    margin-bottom:
        8px;

}


.seo-auth-heading h2 {

    margin:
        0 0 7px;

    color:
        var(--nt-black);

    font-size:
        clamp(22px, 5vw, 27px);

    line-height:
        1.15;

    letter-spacing:
        -0.8px;

    overflow-wrap:
        anywhere;

}


.seo-auth-heading p {

    margin:
        0;

    color:
        var(--nt-muted);

    font-size: 11px;

    line-height:
        1.6;

    overflow-wrap:
        anywhere;

}


/* =========================================================
   AUTH MESSAGES
   ========================================================= */

.seo-auth-message {

    display: none;

    padding:
        11px 12px;

    border-radius:
        8px;

    margin-bottom:
        16px;

    font-size: 10px;

    line-height:
        1.5;

    max-width: 100%;

    overflow-wrap: anywhere;

}


.seo-auth-message.is-visible {

    display:
        block;

}


.seo-auth-message.is-error {

    color:
        var(--nt-danger);

    background:
        var(--nt-danger-light);

    border:
        1px solid #fecaca;

}


.seo-auth-message.is-success {

    color:
        var(--nt-success);

    background:
        var(--nt-success-light);

    border:
        1px solid #bbf7d0;

}


/* =========================================================
   AUTH FORM
   ========================================================= */

.seo-auth-field {

    margin-bottom:
        17px;

    min-width: 0;

}


.seo-auth-field label {

    display: block;

    color:
        var(--nt-dark);

    font-size: 11px;

    font-weight: 700;

    margin-bottom:
        7px;

}


.seo-auth-label-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    min-width: 0;

}


.seo-auth-label-row label {

    margin-bottom:
        7px;

}


.seo-auth-forgot {

    color:
        var(--nt-green);

    font-size: 9px;

    font-weight: 650;

    text-decoration: none;

    margin-bottom:
        7px;

    flex: 0 0 auto;

}


.seo-auth-forgot:hover {

    text-decoration:
        underline;

}


.seo-auth-input-wrap {

    height: 47px;

    display: flex;

    align-items: center;

    border:
        1px solid var(--nt-border);

    border-radius:
        9px;

    background:
        var(--nt-white);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    min-width: 0;

    max-width: 100%;

}


.seo-auth-input-wrap:focus-within {

    border-color:
        var(--nt-green);

    box-shadow:
        0 0 0 3px rgba(0,166,63,0.09);

}


.seo-auth-input-icon {

    width: 40px;

    flex:
        0 0 40px;

    display: flex;

    justify-content: center;

    color:
        var(--nt-light);

    font-size: 13px;

}


.seo-auth-input-wrap input {

    width: 100%;

    min-width: 0;

    height: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color:
        var(--nt-black);

    font-size: 12px;

    padding:
        0 4px;

}


.seo-auth-input-wrap input::placeholder {

    color:
        #b0b5bd;

}


.seo-password-toggle {

    border: 0;

    background: transparent;

    color:
        var(--nt-green);

    font-size: 9px;

    font-weight: 750;

    padding:
        10px 12px;

    cursor: pointer;

    flex: 0 0 auto;

}


.seo-password-toggle:hover {

    color:
        var(--nt-green-dark);

}


.seo-auth-field-help {

    display: block;

    color:
        var(--nt-light);

    font-size: 9px;

    margin-top:
        6px;

    overflow-wrap: anywhere;

}


/* =========================================================
   AUTH SUBMIT
   ========================================================= */

.seo-auth-submit {

    width: 100%;
    max-width: 100%;

    min-height: 48px;

    border: 0;

    border-radius:
        9px;

    background:
        var(--nt-green);

    color:
        var(--nt-white);

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(0,166,63,0.17);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.seo-auth-submit:hover {

    background:
        var(--nt-green-dark);

    transform:
        translateY(-1px);

    box-shadow:
        0 10px 22px rgba(0,166,63,0.23);

}


.seo-auth-submit:disabled {

    opacity:
        0.7;

    cursor:
        not-allowed;

    transform:
        none;

}


/* =========================================================
   AUTH LOADING SPINNER
   ========================================================= */

.seo-button-spinner {

    width: 14px;
    height: 14px;

    border:
        2px solid rgba(255,255,255,0.4);

    border-top-color:
        var(--nt-white);

    border-radius: 50%;

    animation:
        seoSpin 0.7s linear infinite;

}


@keyframes seoSpin {

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   AUTH DIVIDER
   ========================================================= */

.seo-auth-divider {

    display: flex;

    align-items: center;

    gap: 10px;

    margin:
        22px 0 17px;

    min-width: 0;

}


.seo-auth-divider::before,
.seo-auth-divider::after {

    content: "";

    flex: 1;

    min-width: 0;

    height: 1px;

    background:
        var(--nt-border);

}


.seo-auth-divider span {

    color:
        var(--nt-light);

    font-size: 8px;

    font-weight: 750;

    letter-spacing:
        0.8px;

    flex: 0 0 auto;

}


/* =========================================================
   AUTH SWITCH
   ========================================================= */

.seo-auth-switch {

    text-align: center;

    color:
        var(--nt-muted);

    font-size: 10px;

    line-height:
        1.5;

    overflow-wrap: anywhere;

}


.seo-auth-switch button {

    border: 0;

    background: transparent;

    color:
        var(--nt-green);

    font-size: 10px;

    font-weight: 750;

    padding:
        0;

    cursor: pointer;

}


.seo-auth-switch button:hover {

    text-decoration:
        underline;

}


/* =========================================================
   AUTH BENEFITS
   ========================================================= */

.seo-auth-benefits {

    margin-top:
        24px;

    padding:
        14px;

    border-radius:
        10px;

    background:
        #f7faf8;

    border:
        1px solid #e4efe7;

    max-width: 100%;

}


.seo-auth-benefits > div {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        var(--nt-muted);

    font-size: 9px;

    min-width: 0;

}


.seo-auth-benefits > div + div {

    margin-top:
        8px;

}


.seo-auth-benefits > div > span:first-child {

    width: 17px;
    height: 17px;

    flex:
        0 0 17px;

    border-radius: 50%;

    background:
        var(--nt-green-light);

    color:
        var(--nt-green);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 9px;

    font-weight: 800;

}


.seo-auth-benefits > div > span:last-child {

    min-width: 0;

    overflow-wrap: anywhere;

}


/* =========================================================
   AUTH SECURITY
   ========================================================= */

.seo-auth-security {

    margin-top:
        22px;

    display: flex;

    align-items: flex-start;

    gap: 8px;

    padding:
        12px;

    border-radius:
        9px;

    background:
        #f8fafc;

    border:
        1px solid #edf0f3;

    max-width: 100%;

}


.seo-auth-security > span {

    font-size: 12px;

    flex: 0 0 auto;

}


.seo-auth-security p {

    margin:
        0;

    color:
        var(--nt-muted);

    font-size: 9px;

    line-height:
        1.5;

    min-width: 0;

    overflow-wrap: anywhere;

}


/* =========================================================
   HIDDEN AUTH VIEW
   ========================================================= */

.seo-auth-view[hidden] {

    display:
        none !important;

}


/* =========================================================
   TEMPORARY NOTICE
   ========================================================= */

.seo-temporary-notice {

    position: fixed;

    right: 24px;

    bottom: 24px;

    max-width:
        360px;

    padding:
        12px 15px;

    border-radius:
        9px;

    background:
        var(--nt-white);

    border:
        1px solid var(--nt-border);

    box-shadow:
        var(--nt-shadow-lg);

    color:
        var(--nt-dark);

    font-size: 11px;

    font-weight: 650;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index:
        3000;

}


.seo-temporary-notice.is-visible {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.seo-temporary-notice.is-success {

    border-left:
        3px solid var(--nt-green);

}


.seo-temporary-notice.is-error {

    border-left:
        3px solid var(--nt-danger);

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .seo-sidebar {

        width:
            225px;

    }


    .seo-main {

        width:
            calc(100% - 225px);

        margin-left:
            225px;

    }


    .seo-content {

        padding:
            25px;

    }


    .seo-stats {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .seo-tools {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 800px) {

    html,
    body {

        width: 100%;
        max-width: 100%;

        overflow-x: hidden;

    }


    .seo-app {

        display: block;

        width: 100%;
        max-width: 100%;

        min-width: 0;

        overflow-x: hidden;

    }


    .seo-sidebar {

        width:
            min(280px, 86vw);

        max-width:
            280px;

        transform:
            translateX(-105%);

        transition:
            transform 0.25s ease;

        box-shadow:
            15px 0 40px rgba(0,0,0,0.08);

        z-index: 1000;

    }


    .seo-sidebar.is-mobile-open {

        transform:
            translateX(0);

    }


    .seo-main {

        width:
            100%;

        max-width:
            100%;

        margin-left:
            0;

        min-width:
            0;

        overflow-x:
            hidden;

    }


    .seo-topbar {

        width:
            100%;

        max-width:
            100%;

        height:
            68px;

        padding:
            0 12px;

        gap:
            8px;

        min-width:
            0;

        overflow:
            hidden;

    }


    .seo-mobile-menu {

        display:
            flex;

        flex:
            0 0 40px;

    }


    .seo-top-search {

        flex:
            1 1 0;

        width:
            auto;

        min-width:
            0;

        max-width:
            100%;

        height:
            40px;

    }


    .seo-top-search input {

        min-width:
            0;

        max-width:
            100%;

    }


    .seo-top-right {

        flex:
            0 0 auto;

        gap:
            2px;

        min-width:
            0;

    }


    .seo-top-button {

        display:
            none;

    }


    .seo-account {

        padding:
            3px;

        gap:
            0;

        max-width:
            40px;

    }


    .seo-account > span:nth-child(2) {

        display:
            none;

    }


    .seo-avatar {

        width:
            34px;

        height:
            34px;

    }


    .seo-account-dropdown {

        position:
            fixed;

        right:
            12px;

        top:
            60px;

        width:
            min(260px, calc(100% - 24px));

        max-width:
            calc(100% - 24px);

    }


    .seo-content {

        width:
            100%;

        max-width:
            100%;

        padding:
            20px 14px 30px;

        overflow:
            hidden;

    }


    .seo-page-header {

        width:
            100%;

        max-width:
            100%;

        align-items:
            stretch;

        flex-direction:
            column;

        gap:
            14px;

        margin-bottom:
            20px;

    }


    .seo-page-header h1 {

        font-size:
            27px;

        letter-spacing:
            -0.7px;

    }


    .seo-page-header p {

        font-size:
            12px;

        line-height:
            1.55;

    }


    .seo-page-header .seo-primary-button {

        width:
            100%;

        max-width:
            100%;

        justify-content:
            center;

    }


    .seo-welcome {

        width:
            100%;

        max-width:
            100%;

        min-height:
            auto;

        padding:
            24px 20px;

        margin-bottom:
            18px;

        border-radius:
            15px;

    }


    .seo-welcome-content {

        width:
            100%;

        max-width:
            none;

        min-width:
            0;

    }


    .seo-welcome-graphic {

        display:
            none;

    }


    .seo-welcome h2 {

        font-size:
            25px;

        line-height:
            1.18;

    }


    .seo-welcome p {

        font-size:
            12px;

        line-height:
            1.6;

        margin-bottom:
            17px;

    }


    .seo-welcome .seo-primary-button {

        width:
            auto;

        max-width:
            100%;

    }


    .seo-stats {

        width:
            100%;

        max-width:
            100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            10px;

        margin-bottom:
            18px;

    }


    .seo-stat-card {

        padding:
            14px;

        min-width:
            0;

        max-width:
            100%;

        overflow:
            hidden;

    }


    .seo-stat-top {

        margin-bottom:
            13px;

        gap:
            6px;

    }


    .seo-stat-top > span {

        font-size:
            9px;

        line-height:
            1.3;

    }


    .seo-stat-icon {

        width:
            28px;

        height:
            28px;

        flex:
            0 0 28px;

    }


    .seo-stat-card > strong {

        font-size:
            21px;

    }


    .seo-stat-card > small {

        font-size:
            8px;

    }


    .seo-dashboard-grid {

        width:
            100%;

        max-width:
            100%;

        grid-template-columns:
            minmax(0, 1fr);

        gap:
            15px;

        margin-bottom:
            18px;

    }


    .seo-dashboard-grid > * {

        min-width:
            0;

        width:
            100%;

        max-width:
            100%;

    }


    .seo-panel {

        width:
            100%;

        max-width:
            100%;

        min-width:
            0;

        overflow:
            hidden;

    }


    .seo-panel-header {

        padding:
            17px 15px;

        gap:
            10px;

    }


    .seo-panel-header h3 {

        font-size:
            13px;

    }


    .seo-panel-header p {

        font-size:
            10px;

    }


    .seo-panel-header a {

        font-size:
            10px;

    }


    .seo-panel-header select {

        max-width:
            115px;

        padding:
            6px 7px;

        font-size:
            9px;

    }


    .seo-chart {

        min-height:
            240px;

        margin:
            14px;

        max-width:
            calc(100% - 28px);

    }


    .seo-projects-panel {

        margin-bottom:
            18px;

    }


    .seo-projects-list {

        padding:
            4px 15px 12px;

    }


    .seo-project-item {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            10px;

        padding:
            14px 0;

    }


    .seo-project-main {

        width:
            100%;

        max-width:
            100%;

        min-width:
            0;

    }


    .seo-project-info {

        min-width:
            0;

        max-width:
            100%;

    }


    .seo-project-info strong {

        font-size:
            12px;

    }


    .seo-project-info a {

        max-width:
            100%;

        font-size:
            9px;

    }


    .seo-project-meta {

        gap:
            5px;

        max-width:
            100%;

    }


    .seo-project-status {

        margin-left:
            52px;

    }


    .seo-tools-panel {

        margin-bottom:
            25px;

    }


    .seo-tools {

        width:
            100%;

        max-width:
            100%;

        grid-template-columns:
            minmax(0, 1fr);

        gap:
            9px;

        padding:
            14px 15px 16px;

    }


    .seo-tool {

        width:
            100%;

        max-width:
            100%;

        min-width:
            0;

        padding:
            12px;

    }


    .seo-tool strong {

        font-size:
            11px;

    }


    .seo-tool span {

        font-size:
            9px;

    }


    .seo-modal-overlay,
    .seo-auth-overlay {

        width:
            100%;

        height:
            100%;

        min-height:
            100dvh;

        padding:
            20px;

    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .seo-topbar {

        width:
            100%;

        padding:
            0 10px;

        gap:
            6px;

    }


    .seo-mobile-menu {

        width:
            38px;

        height:
            38px;

        flex:
            0 0 38px;

    }


    .seo-top-search {

        height:
            38px;

        padding:
            0 9px;

        gap:
            6px;

        flex:
            1 1 0;

    }


    .seo-top-search > span {

        font-size:
            15px;

    }


    .seo-top-search input {

        font-size:
            11px;

    }


    .seo-avatar {

        width:
            32px;

        height:
            32px;

        flex:
            0 0 32px;

        font-size:
            10px;

    }


    .seo-content {

        width:
            100%;

        max-width:
            100%;

        padding:
            17px 12px 25px;

    }


    .seo-page-header h1 {

        font-size:
            24px;

    }


    .seo-welcome {

        padding:
            21px 17px;

        border-radius:
            14px;

    }


    .seo-welcome h2 {

        font-size:
            23px;

    }


    .seo-welcome p {

        font-size:
            11px;

    }


    .seo-welcome .seo-primary-button {

        width:
            100%;

        max-width:
            100%;

    }


    .seo-stats {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            8px;

    }


    .seo-stat-card {

        padding:
            12px;

        border-radius:
            11px;

    }


    .seo-stat-top {

        align-items:
            flex-start;

        margin-bottom:
            12px;

    }


    .seo-stat-top > span {

        font-size:
            8px;

    }


    .seo-stat-icon {

        width:
            25px;

        height:
            25px;

        flex:
            0 0 25px;

        font-size:
            10px;

    }


    .seo-stat-card > strong {

        font-size:
            19px;

    }


    .seo-stat-card > small {

        font-size:
            7.5px;

    }


    .seo-panel-header {

        padding:
            15px 13px;

    }


    .seo-panel-header h3 {

        font-size:
            12px;

    }


    .seo-panel-header p {

        font-size:
            9px;

    }


    .seo-panel-header select {

        max-width:
            105px;

        font-size:
            8px;

    }


    .seo-chart {

        min-height:
            210px;

        margin:
            12px;

        max-width:
            calc(100% - 24px);

    }


    .seo-chart-message {

        padding:
            15px;

    }


    .seo-projects-list {

        padding:
            4px 13px 10px;

    }


    .seo-project-status {

        margin-left:
            52px;

    }


    .seo-auth-overlay {

        padding:
            10px;

        align-items:
            flex-end;

        width:
            100%;

        min-height:
            100dvh;

    }


    .seo-auth-modal {

        width:
            100%;

        max-width:
            100%;

        max-height:
            calc(100dvh - 20px);

        border-radius:
            17px;

        padding:
            22px 17px 20px;

        overflow-y:
            auto;

    }


    .seo-auth-close {

        right:
            13px;

        top:
            13px;

        width:
            32px;

        height:
            32px;

    }


    .seo-auth-brand {

        padding-right:
            40px;

        margin-bottom:
            20px;

    }


    .seo-auth-logo {

        width:
            40px;

        height:
            40px;

        flex:
            0 0 40px;

    }


    .seo-auth-heading {

        margin-bottom:
            18px;

    }


    .seo-auth-heading h2 {

        font-size:
            21px;

    }


    .seo-auth-heading p {

        font-size:
            10px;

    }


    .seo-auth-field {

        margin-bottom:
            14px;

    }


    .seo-auth-input-wrap {

        height:
            45px;

    }


    .seo-auth-input-icon {

        width:
            35px;

        flex:
            0 0 35px;

    }


    .seo-password-toggle {

        padding:
            9px;

    }


    .seo-auth-submit {

        min-height:
            46px;

    }


    .seo-auth-divider {

        margin:
            18px 0 14px;

    }


    .seo-auth-benefits {

        margin-top:
            19px;

        padding:
            12px;

    }


    .seo-auth-security {

        margin-top:
            17px;

        padding:
            10px;

    }


    .seo-modal-overlay {

        padding:
            10px;

        align-items:
            flex-end;

    }


    .seo-modal {

        width:
            100%;

        max-width:
            100%;

        max-height:
            calc(100dvh - 20px);

        border-radius:
            15px;

    }


    .seo-modal-header {

        padding:
            19px 17px 16px;

        gap:
            10px;

    }


    .seo-modal-header h2 {

        font-size:
            20px;

    }


    .seo-project-form {

        padding:
            18px 17px 20px;

    }


    .seo-form-row {

        grid-template-columns:
            minmax(0, 1fr);

        gap:
            0;

    }


    .seo-modal-actions {

        flex-direction:
            column-reverse;

    }


    .seo-modal-actions button {

        width:
            100%;

        max-width:
            100%;

    }


    .seo-temporary-notice {

        left:
            12px;

        right:
            12px;

        bottom:
            12px;

        max-width:
            none;

        font-size:
            10px;

    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .seo-topbar {

        padding:
            0 7px;

        gap:
            5px;

    }


    .seo-mobile-menu {

        width:
            36px;

        height:
            36px;

        flex:
            0 0 36px;

    }


    .seo-top-search {

        height:
            36px;

    }


    .seo-top-search > span {

        display:
            none;

    }


    .seo-avatar {

        width:
            30px;

        height:
            30px;

        flex:
            0 0 30px;

    }


    .seo-content {

        padding-left:
            10px;

        padding-right:
            10px;

    }


    .seo-stats {

        gap:
            7px;

    }


    .seo-stat-card {

        padding:
            10px;

    }


    .seo-stat-card > strong {

        font-size:
            18px;

    }


    .seo-stat-top > span {

        font-size:
            7.5px;

    }


    .seo-welcome {

        padding:
            19px 15px;

    }


    .seo-welcome h2 {

        font-size:
            21px;

    }


    .seo-welcome p {

        font-size:
            10px;

    }

}


/* =========================================================
   ACCESSIBILITY / FOCUS
   ========================================================= */

.seo-app button:focus-visible,
.seo-app a:focus-visible,
.seo-auth-overlay button:focus-visible,
.seo-auth-overlay a:focus-visible,
.seo-auth-overlay input:focus-visible,
.seo-modal-overlay button:focus-visible,
.seo-modal-overlay input:focus-visible,
.seo-modal-overlay select:focus-visible {

    outline:
        2px solid var(--nt-green);

    outline-offset:
        2px;

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        transition:
            none !important;

        animation:
            none !important;

    }

}
/* =========================================================
   NAIJATRAFFIC SEO — REAL PHONE MOBILE HARDENING
   =========================================================
   These rules intentionally come LAST so they override
   Astra/theme styles without changing the desktop design.
   ========================================================= */


/* =========================================================
   APP WIDTH / FLEX SAFETY
   ========================================================== */

.seo-app,
.seo-main,
.seo-topbar,
.seo-top-search,
.seo-top-right,
.seo-content,
.seo-page-header,
.seo-panel,
.seo-welcome,
.seo-stats,
.seo-dashboard-grid,
.seo-tools {
    max-width: 100% !important;
    min-width: 0 !important;
}

.seo-app {
    width: 100% !important;
    overflow-x: clip !important;
}

.seo-main {
    overflow-x: clip !important;
}


/* =========================================================
   MOBILE APPLICATION TOP BAR
   ========================================================== */

@media screen and (max-width: 800px) {

    .seo-topbar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        padding-left: 10px !important;
        padding-right: 10px !important;

        gap: 7px !important;

        overflow: hidden !important;
    }


    /* -----------------------------------------------------
       APP HAMBURGER
       ----------------------------------------------------- */

    .seo-mobile-menu {
        display: flex !important;

        flex: 0 0 38px !important;

        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;

        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;

        padding: 0 !important;

        border: 1px solid var(--nt-border) !important;
        border-radius: 9px !important;

        background: #ffffff !important;
        color: var(--nt-dark) !important;

        box-shadow: none !important;
    }


    .seo-mobile-menu span {
        display: block !important;

        width: 17px !important;
        min-width: 17px !important;
        max-width: 17px !important;

        height: 2px !important;

        margin: 0 !important;

        background: var(--nt-dark) !important;

        border-radius: 2px !important;
    }


    /* -----------------------------------------------------
       APP SEARCH
       ----------------------------------------------------- */

    .seo-top-search {
        flex: 1 1 0 !important;

        width: auto !important;

        min-width: 0 !important;

        max-width: none !important;

        overflow: hidden !important;
    }


    .seo-top-search input {
        width: 100% !important;

        min-width: 0 !important;

        max-width: 100% !important;

        overflow: hidden !important;
    }


    /* -----------------------------------------------------
       APP TOP RIGHT
       ----------------------------------------------------- */

    .seo-top-right {
        flex: 0 0 38px !important;

        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 0 !important;

        overflow: visible !important;
    }


    /*
     * Help and notification buttons are hidden on phones.
     * The user's account remains available through the avatar.
     */

    .seo-top-right .seo-top-button {
        display: none !important;
    }


    /* -----------------------------------------------------
       ACCOUNT AVATAR
       ----------------------------------------------------- */

    .seo-account {
        display: flex !important;

        flex: 0 0 38px !important;

        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;

        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;

        padding: 2px !important;

        margin: 0 !important;

        gap: 0 !important;

        border-radius: 50% !important;

        overflow: visible !important;
    }


    .seo-account > span:nth-child(2),
    .seo-account > span:last-child {
        display: none !important;
    }


    .seo-avatar {
        display: flex !important;

        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;

        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;

        flex: 0 0 34px !important;

        margin: 0 !important;
    }


    /* -----------------------------------------------------
       ACCOUNT DROPDOWN
       ----------------------------------------------------- */

    /*
     * This forces the account menu to remain inside the
     * physical phone viewport.
     */

    .seo-account-dropdown,
    .seo-account-dropdown.is-open {
        position: fixed !important;

        left: 10px !important;
        right: 10px !important;

        top: 58px !important;

        width: auto !important;

        min-width: 0 !important;
        max-width: none !important;

        margin: 0 !important;

        z-index: 2147483000 !important;
    }


    /* =====================================================
       PAGE HEADER
       ===================================================== */

    .seo-page-header {
        width: 100% !important;

        min-width: 0 !important;

        overflow: hidden !important;
    }


    .seo-page-header > * {
        min-width: 0 !important;

        max-width: 100% !important;
    }


    .seo-page-header .seo-primary-button {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;
    }


    /* =====================================================
       PROJECT CARDS / PANELS
       ===================================================== */

    .seo-panel,
    .seo-projects-panel,
    .seo-performance-panel,
    .seo-tools-panel,
    .seo-stat-card,
    .seo-tool,
    .seo-project-item,
    .seo-project-main,
    .seo-project-info,
    .seo-project-meta {
        min-width: 0 !important;

        max-width: 100% !important;
    }


    .seo-panel-header,
    .seo-project-item,
    .seo-project-main,
    .seo-project-info,
    .seo-project-meta {
        overflow-wrap: anywhere !important;
    }


    /* =====================================================
       ADD PROJECT MODAL
       ===================================================== */

    .seo-modal-overlay {
        position: fixed !important;

        inset: 0 !important;

        width: 100% !important;

        height: 100% !important;

        min-height: 100dvh !important;

        padding: 10px !important;

        display: flex !important;

        align-items: flex-end !important;

        justify-content: center !important;

        overflow: hidden !important;

        z-index: 2147482000 !important;
    }


    .seo-modal-overlay.is-open {
        display: flex !important;

        visibility: visible !important;

        opacity: 1 !important;

        pointer-events: auto !important;
    }


    .seo-modal {
        width: 100% !important;

        max-width: 560px !important;

        min-width: 0 !important;

        max-height: calc(100dvh - 20px) !important;

        margin: 0 !important;

        overflow-x: hidden !important;

        overflow-y: auto !important;

        background: #ffffff !important;

        color: var(--nt-text) !important;

        border-radius: 15px !important;
    }


    .seo-modal-header,
    .seo-project-form {
        min-width: 0 !important;

        max-width: 100% !important;
    }


    .seo-modal-header {
        display: flex !important;

        align-items: flex-start !important;

        justify-content: space-between !important;

        padding: 19px 17px 16px !important;

        gap: 10px !important;
    }


    .seo-modal-header > div {
        min-width: 0 !important;

        max-width: calc(100% - 44px) !important;
    }


    .seo-modal-header h2,
    .seo-modal-header p,
    .seo-modal-eyebrow {
        max-width: 100% !important;

        overflow-wrap: anywhere !important;
    }


    /* -----------------------------------------------------
       ADD PROJECT CLOSE BUTTON
       ----------------------------------------------------- */

    .seo-modal-close {
        flex: 0 0 34px !important;

        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;

        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;

        padding: 0 !important;

        border: 1px solid var(--nt-border) !important;

        border-radius: 8px !important;

        background: #ffffff !important;

        color: var(--nt-muted) !important;
    }


    /* -----------------------------------------------------
       PROJECT FORM
       ----------------------------------------------------- */

    .seo-project-form {
        width: 100% !important;

        padding: 18px 17px 20px !important;
    }


    .seo-form-group,
    .seo-form-row {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;
    }


    .seo-form-row {
        display: grid !important;

        grid-template-columns: minmax(0, 1fr) !important;

        gap: 0 !important;
    }


    .seo-form-group input,
    .seo-form-group select {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;
    }


    .seo-modal-actions {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        flex-direction: column-reverse !important;
    }


    .seo-modal-actions button {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;
    }


    /* =====================================================
       AUTHENTICATION MODAL
       ===================================================== */

    /*
     * This is the most important part of the fix.
     *
     * It isolates the NaijaTraffic SEO login/signup modal
     * from Astra and other WordPress theme button/input
     * styles.
     */

    .seo-auth-overlay {
        position: fixed !important;

        inset: 0 !important;

        width: 100% !important;

        height: 100% !important;

        min-height: 100dvh !important;

        padding: 10px !important;

        display: flex !important;

        align-items: flex-end !important;

        justify-content: center !important;

        overflow: hidden !important;

        background: rgba(15, 23, 42, 0.62) !important;

        backdrop-filter: blur(6px) !important;

        -webkit-backdrop-filter: blur(6px) !important;

        z-index: 2147483000 !important;
    }


    .seo-auth-overlay:not(.is-open) {
        visibility: hidden !important;

        opacity: 0 !important;

        pointer-events: none !important;
    }


    .seo-auth-overlay.is-open {
        visibility: visible !important;

        opacity: 1 !important;

        pointer-events: auto !important;
    }


    /* -----------------------------------------------------
       AUTH MODAL CARD
       ----------------------------------------------------- */

    .seo-auth-modal {
        position: relative !important;

        display: block !important;

        width: 100% !important;

        max-width: 470px !important;

        min-width: 0 !important;

        max-height: calc(100dvh - 20px) !important;

        margin: 0 !important;

        padding: 22px 17px 20px !important;

        overflow-x: hidden !important;

        overflow-y: auto !important;

        background: #ffffff !important;

        color: var(--nt-text) !important;

        border: 1px solid rgba(255,255,255,0.5) !important;

        border-radius: 17px !important;

        box-shadow: 0 30px 90px rgba(0,0,0,0.22) !important;

        transform: translateY(0) scale(1) !important;
    }


    /* -----------------------------------------------------
       AUTH CLOSE BUTTON
       ----------------------------------------------------- */

    .seo-auth-close {
        position: absolute !important;

        right: 13px !important;

        top: 13px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        width: 32px !important;

        min-width: 32px !important;

        max-width: 32px !important;

        height: 32px !important;

        min-height: 32px !important;

        max-height: 32px !important;

        padding: 0 !important;

        border: 1px solid var(--nt-border) !important;

        border-radius: 9px !important;

        background: #ffffff !important;

        color: var(--nt-muted) !important;

        font-size: 20px !important;

        line-height: 1 !important;

        box-shadow: none !important;

        z-index: 5 !important;
    }


    /* -----------------------------------------------------
       AUTH BRAND
       ----------------------------------------------------- */

    .seo-auth-brand {
        display: flex !important;

        align-items: center !important;

        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        padding-right: 40px !important;

        margin-bottom: 20px !important;
    }


    .seo-auth-logo {
        flex: 0 0 40px !important;

        width: 40px !important;

        min-width: 40px !important;

        max-width: 40px !important;

        height: 40px !important;

        min-height: 40px !important;

        max-height: 40px !important;

        border-radius: 11px !important;

        background: var(--nt-green) !important;

        color: #ffffff !important;
    }


    .seo-auth-brand > div:last-child {
        min-width: 0 !important;

        max-width: calc(100% - 51px) !important;
    }


    /* -----------------------------------------------------
       AUTH CONTENT WIDTH
       ----------------------------------------------------- */

    .seo-auth-brand strong,
    .seo-auth-brand span,
    .seo-auth-heading,
    .seo-auth-heading h2,
    .seo-auth-heading p,
    .seo-auth-form,
    .seo-auth-field,
    .seo-auth-switch,
    .seo-auth-benefits,
    .seo-auth-security {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;
    }


    .seo-auth-heading h2 {
        font-size: 21px !important;

        line-height: 1.18 !important;

        overflow-wrap: anywhere !important;
    }


    .seo-auth-heading p,
    .seo-auth-brand strong,
    .seo-auth-brand span {
        overflow-wrap: anywhere !important;
    }


    /* -----------------------------------------------------
       AUTH FORM
       ----------------------------------------------------- */

    .seo-auth-form {
        margin: 0 !important;

        padding: 0 !important;
    }


    .seo-auth-field {
        margin-bottom: 14px !important;
    }


    /* -----------------------------------------------------
       PASSWORD / LABEL ROW
       ----------------------------------------------------- */

    .seo-auth-label-row {
        width: 100% !important;

        min-width: 0 !important;

        gap: 8px !important;
    }


    .seo-auth-label-row label {
        min-width: 0 !important;

        overflow-wrap: anywhere !important;
    }


    .seo-auth-forgot {
        flex: 0 1 auto !important;

        max-width: 45% !important;

        text-align: right !important;

        overflow-wrap: anywhere !important;
    }


    /* -----------------------------------------------------
       AUTH INPUT WRAPPER
       ----------------------------------------------------- */

    .seo-auth-input-wrap {
        display: flex !important;

        align-items: center !important;

        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        height: 45px !important;

        overflow: hidden !important;

        border: 1px solid var(--nt-border) !important;

        border-radius: 9px !important;

        background: #ffffff !important;
    }


    .seo-auth-input-icon {
        flex: 0 0 35px !important;

        width: 35px !important;

        min-width: 35px !important;

        max-width: 35px !important;

        color: var(--nt-light) !important;
    }


    /* -----------------------------------------------------
       AUTH INPUTS
       ----------------------------------------------------- */

    .seo-auth-input-wrap input,
    .seo-auth-input-wrap input[type="text"],
    .seo-auth-input-wrap input[type="email"],
    .seo-auth-input-wrap input[type="password"] {
        display: block !important;

        width: 100% !important;

        min-width: 0 !important;

        max-width: 100% !important;

        height: 100% !important;

        margin: 0 !important;

        padding: 0 4px !important;

        border: 0 !important;

        border-radius: 0 !important;

        outline: 0 !important;

        background: transparent !important;

        color: var(--nt-black) !important;

        box-shadow: none !important;

        font-size: 12px !important;
    }


    /* -----------------------------------------------------
       PASSWORD SHOW BUTTON
       ----------------------------------------------------- */

    .seo-password-toggle {
        flex: 0 0 auto !important;

        width: auto !important;

        min-width: 0 !important;

        max-width: 70px !important;

        margin: 0 !important;

        padding: 9px !important;

        border: 0 !important;

        border-radius: 0 !important;

        background: transparent !important;

        color: var(--nt-green) !important;

        box-shadow: none !important;
    }


    /* -----------------------------------------------------
       AUTH SUBMIT BUTTONS
       ----------------------------------------------------- */

    .seo-auth-submit,
    .seo-auth-form .seo-auth-submit,
    #seo-login-submit,
    #seo-signup-submit {
        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        min-height: 46px !important;

        margin: 0 !important;

        padding: 0 14px !important;

        border: 0 !important;

        border-radius: 9px !important;

        background: var(--nt-green) !important;

        color: #ffffff !important;

        box-shadow: 0 7px 18px rgba(0,166,63,0.17) !important;

        font-size: 12px !important;

        font-weight: 750 !important;
    }


    /* -----------------------------------------------------
       AUTH DIVIDER
       ----------------------------------------------------- */

    .seo-auth-divider {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;
    }


    /* -----------------------------------------------------
       AUTH SWITCH
       ----------------------------------------------------- */

    .seo-auth-switch button {
        width: auto !important;

        max-width: 100% !important;

        min-width: 0 !important;

        padding: 0 !important;

        border: 0 !important;

        background: transparent !important;

        color: var(--nt-green) !important;

        box-shadow: none !important;
    }


    /* -----------------------------------------------------
       AUTH BENEFITS / SECURITY
       ----------------------------------------------------- */

    .seo-auth-benefits > div,
    .seo-auth-security {
        min-width: 0 !important;

        max-width: 100% !important;

        overflow-wrap: anywhere !important;
    }

}


/* =========================================================
   EXTRA-NARROW PHONES
   ========================================================== */

@media screen and (max-width: 380px) {

    .seo-topbar {
        padding-left: 7px !important;

        padding-right: 7px !important;

        gap: 5px !important;
    }


    .seo-mobile-menu,
    .seo-top-right,
    .seo-account {
        width: 36px !important;

        min-width: 36px !important;

        max-width: 36px !important;
    }


    .seo-mobile-menu {
        flex-basis: 36px !important;

        height: 36px !important;

        min-height: 36px !important;

        max-height: 36px !important;
    }


    .seo-avatar {
        width: 32px !important;

        min-width: 32px !important;

        max-width: 32px !important;

        height: 32px !important;

        min-height: 32px !important;

        max-height: 32px !important;

        flex-basis: 32px !important;
    }


    .seo-account-dropdown,
    .seo-account-dropdown.is-open {
        left: 8px !important;

        right: 8px !important;

        top: 55px !important;
    }


    .seo-auth-overlay,
    .seo-modal-overlay {
        padding: 7px !important;
    }


    .seo-auth-modal {
        max-height: calc(100dvh - 14px) !important;

        border-radius: 15px !important;

        padding: 20px 14px 17px !important;
    }


    .seo-modal {
        max-height: calc(100dvh - 14px) !important;

        border-radius: 14px !important;
    }

}