/* =========================================================
   ACQUISITION PLATFORM
   ADMIN DASHBOARD
========================================================= */


/* =========================================================
   1. VARIABLES / RESET
========================================================= */

:root {
    --bg-main: #07101d;
    --bg-deep: #050b14;
    --bg-sidebar: #081321;
    --bg-panel: #0d1b2d;
    --bg-panel-soft: rgba(15, 30, 49, 0.78);
    --bg-hover: rgba(255, 255, 255, 0.04);

    --border: rgba(148, 163, 184, 0.1);
    --border-bright: rgba(96, 165, 250, 0.22);

    --text-main: #f5f8fc;
    --text-secondary: #a8b6c9;
    --text-muted: #6f7f95;

    --blue: #4f8cff;
    --blue-light: #78b3ff;
    --cyan: #39d5e6;
    --green: #4ade80;
    --yellow: #facc15;
    --orange: #fb923c;
    --red: #fb7185;

    --gradient-primary:
        linear-gradient(
            135deg,
            #4f8cff 0%,
            #5c9fff 45%,
            #39d5e6 100%
        );

    --shadow-panel:
        0 22px 60px rgba(0, 0, 0, 0.2);

    --shadow-large:
        0 35px 90px rgba(0, 0, 0, 0.42);

    --sidebar-width: 258px;

    --radius-small: 9px;
    --radius-medium: 15px;
    --radius-large: 22px;
}


* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% -10%,
            rgba(37, 99, 235, 0.09),
            transparent 32%
        ),
        var(--bg-main);

    color: var(--text-main);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.5;

    overflow-x: hidden;
}


button,
input {
    font: inherit;
}


button {
    color: inherit;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   2. MAIN APPLICATION LAYOUT
========================================================= */

.app-shell {
    min-height: 100vh;

    display: flex;
}


.sidebar {
    position: fixed;

    inset:
        0 auto 0 0;

    z-index: 300;

    width: var(--sidebar-width);

    display: flex;
    flex-direction: column;

    padding:
        22px 16px 18px;

    background:
        linear-gradient(
            180deg,
            rgba(9, 21, 36, 0.99),
            rgba(5, 13, 23, 0.99)
        );

    border-right:
        1px solid var(--border);

    overflow-y: auto;
}


.main-shell {
    min-width: 0;

    width:
        calc(
            100% - var(--sidebar-width)
        );

    margin-left:
        var(--sidebar-width);
}


/* =========================================================
   3. SIDEBAR
========================================================= */

.sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 52px;

    padding:
        0 7px 20px;
}


.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;
}


.brand-mark {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    background:
        var(--gradient-primary);

    color: white;

    font-size: 19px;
    font-weight: 800;

    box-shadow:
        0 0 25px rgba(79, 140, 255, 0.22);
}


.brand-copy {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}


.brand-copy strong {
    color: #f0f5fb;

    font-size: 13px;
    font-weight: 750;

    letter-spacing: -0.01em;
}


.brand-copy small {
    margin-top: 4px;

    color: var(--blue-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.11em;

    text-transform: uppercase;
}


.sidebar-close {
    display: none;

    width: 34px;
    height: 34px;

    border: 0;

    background: transparent;

    color: var(--text-secondary);

    font-size: 24px;

    cursor: pointer;
}


.sidebar-nav {
    display: flex;
    flex: 1;
    flex-direction: column;

    gap: 28px;

    margin-top: 10px;
}


.nav-section {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.nav-label {
    padding:
        0 11px 8px;

    color: #536276;

    font-size: 9px;
    font-weight: 750;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.nav-item {
    position: relative;

    min-height: 43px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding:
        0 11px;

    border:
        1px solid transparent;

    border-radius: 10px;

    color: #8090a5;

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.nav-item:hover {
    color: #d8e3ef;

    background:
        rgba(255, 255, 255, 0.025);
}


.nav-item.active {
    background:
        linear-gradient(
            90deg,
            rgba(79, 140, 255, 0.13),
            rgba(79, 140, 255, 0.04)
        );

    border-color:
        rgba(79, 140, 255, 0.11);

    color: #dce9fa;
}


.nav-item.active::before {
    content: "";

    position: absolute;

    left: -17px;

    width: 3px;
    height: 23px;

    border-radius:
        0 5px 5px 0;

    background:
        var(--gradient-primary);

    box-shadow:
        0 0 14px rgba(79, 140, 255, 0.45);
}


.nav-icon {
    width: 20px;

    color: #7194c5;

    font-size: 16px;

    text-align: center;
}


.nav-item.active .nav-icon {
    color: #86b8ff;
}


.nav-text {
    flex: 1;
}


.nav-count {
    min-width: 25px;

    padding:
        3px 7px;

    border:
        1px solid rgba(96, 165, 250, 0.12);

    border-radius: 999px;

    background:
        rgba(79, 140, 255, 0.07);

    color: #79aef7;

    font-size: 9px;
    font-weight: 700;

    text-align: center;
}


.coming-soon {
    padding:
        3px 6px;

    border:
        1px solid rgba(148, 163, 184, 0.08);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #66758a;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}


.sidebar-bottom {
    margin-top: 35px;
}


.system-card {
    padding: 14px;

    border:
        1px solid rgba(74, 222, 128, 0.1);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(74, 222, 128, 0.045),
            rgba(255, 255, 255, 0.012)
        );
}


.system-card-header {
    display: flex;
    align-items: center;

    gap: 8px;
}


.system-card-header strong {
    color: #b8d9c2;

    font-size: 10px;
    font-weight: 700;
}


.system-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(74, 222, 128, 0.5);
}


.system-card p {
    margin-top: 8px;

    color: #617087;

    font-size: 9px;

    line-height: 1.6;
}


.admin-profile {
    display: grid;

    grid-template-columns:
        37px minmax(0, 1fr) auto;

    align-items: center;

    gap: 10px;

    margin-top: 16px;

    padding:
        13px 9px 4px;
}


.profile-avatar {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(96, 165, 250, 0.13);

    border-radius: 10px;

    background:
        rgba(79, 140, 255, 0.08);

    color: #8bbcff;

    font-size: 10px;
    font-weight: 800;
}


.profile-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.profile-copy strong {
    color: #d9e3ef;

    font-size: 10px;
}


.profile-copy span {
    margin-top: 2px;

    color: #607087;

    font-size: 8px;
}


.profile-menu {
    width: 28px;
    height: 28px;

    border: 0;

    background: transparent;

    color: #65758a;

    font-size: 18px;

    cursor: pointer;
}


/* =========================================================
   4. TOP BAR
========================================================= */

.topbar {
    position: sticky;
    top: 0;
    z-index: 200;

    min-height: 79px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        0 34px;

    background:
        rgba(7, 16, 29, 0.88);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}


.topbar-left {
    display: flex;
    align-items: center;

    gap: 15px;
}


.page-eyebrow {
    display: block;

    margin-bottom: 2px;

    color: #607087;

    font-size: 8px;
    font-weight: 750;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.topbar h1 {
    color: #ebf1f8;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: -0.02em;
}


.menu-button {
    display: none;

    width: 38px;
    height: 38px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #a8b7ca;

    cursor: pointer;
}


.topbar-actions {
    display: flex;
    align-items: center;

    gap: 9px;
}


.icon-button {
    position: relative;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.018);

    color: #8494a9;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.icon-button:hover {
    border-color:
        rgba(96, 165, 250, 0.2);

    background:
        rgba(255, 255, 255, 0.035);
}


.notification-dot {
    position: absolute;

    width: 6px;
    height: 6px;

    top: 8px;
    right: 8px;

    border:
        1px solid var(--bg-main);

    border-radius: 50%;

    background: var(--blue);
}


/* =========================================================
   5. BUTTONS
========================================================= */

.button {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding:
        0 15px;

    border:
        1px solid transparent;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.button:hover {
    transform: translateY(-1px);
}


.button-primary {
    background:
        var(--gradient-primary);

    color: white;

    box-shadow:
        0 8px 25px rgba(79, 140, 255, 0.18);
}


.button-primary:hover {
    box-shadow:
        0 12px 32px rgba(79, 140, 255, 0.28);
}


.button-secondary {
    border-color:
        rgba(148, 163, 184, 0.11);

    background:
        rgba(255, 255, 255, 0.025);

    color: #abb9ca;
}


.button-secondary:hover {
    border-color:
        rgba(148, 163, 184, 0.23);

    background:
        rgba(255, 255, 255, 0.045);
}


.button-icon {
    font-size: 15px;

    line-height: 1;
}


/* =========================================================
   6. DASHBOARD CONTENT
========================================================= */

.dashboard-main {
    width: min(
        100%,
        1500px
    );

    margin-inline: auto;

    padding:
        32px 34px 38px;
}


.dashboard-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 26px;
}


.heading-row {
    display: flex;
    align-items: center;

    gap: 12px;
}


.dashboard-heading h2 {
    color: #f3f7fb;

    font-size: 25px;
    font-weight: 740;

    letter-spacing: -0.035em;
}


.dashboard-heading > div > p {
    margin-top: 6px;

    color: var(--text-muted);

    font-size: 11px;
}


.environment-badge {
    padding:
        4px 8px;

    border:
        1px solid rgba(96, 165, 250, 0.14);

    border-radius: 999px;

    background:
        rgba(79, 140, 255, 0.06);

    color: #77a9ed;

    font-size: 8px;
    font-weight: 750;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.last-updated {
    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        9px 12px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.015);
}


.pulse-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 rgba(74, 222, 128, 0.4);

    animation:
        pulse 2s infinite;
}


@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(74, 222, 128, 0.33);
    }

    70% {
        box-shadow:
            0 0 0 7px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(74, 222, 128, 0);
    }

}


.last-updated div {
    display: flex;
    flex-direction: column;
}


.last-updated span {
    color: #65758a;

    font-size: 8px;
}


.last-updated strong {
    margin-top: 1px;

    color: #aab8c9;

    font-size: 9px;
}


/* =========================================================
   7. STAT CARDS
========================================================= */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-bottom: 17px;
}


.stat-card {
    min-width: 0;

    padding: 19px;

    border:
        1px solid var(--border);

    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            145deg,
            rgba(15, 30, 49, 0.83),
            rgba(10, 22, 37, 0.9)
        );

    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.stat-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(96, 165, 250, 0.17);
}


.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 19px;
}


.stat-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 800;
}


.stat-icon.blue {
    border:
        1px solid rgba(79, 140, 255, 0.14);

    background:
        rgba(79, 140, 255, 0.08);

    color: #80b3ff;
}


.stat-icon.green {
    border:
        1px solid rgba(74, 222, 128, 0.14);

    background:
        rgba(74, 222, 128, 0.07);

    color: #78df98;
}


.stat-icon.yellow {
    border:
        1px solid rgba(250, 204, 21, 0.13);

    background:
        rgba(250, 204, 21, 0.065);

    color: #dfc85b;
}


.stat-icon.cyan {
    border:
        1px solid rgba(57, 213, 230, 0.14);

    background:
        rgba(57, 213, 230, 0.07);

    color: #64d8e5;
}


.stat-trend {
    padding:
        4px 7px;

    border-radius: 999px;

    font-size: 7px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.04em;
}


.stat-trend.neutral {
    border:
        1px solid rgba(148, 163, 184, 0.08);

    background:
        rgba(255, 255, 255, 0.025);

    color: #6d7e94;
}


.stat-trend.positive {
    border:
        1px solid rgba(74, 222, 128, 0.1);

    background:
        rgba(74, 222, 128, 0.05);

    color: #71cd8d;
}


.stat-trend.warning {
    border:
        1px solid rgba(250, 204, 21, 0.1);

    background:
        rgba(250, 204, 21, 0.05);

    color: #c8b552;
}


.stat-label {
    display: block;

    color: #78889e;

    font-size: 9px;
    font-weight: 650;

    text-transform: uppercase;

    letter-spacing: 0.055em;
}


.stat-value {
    display: block;

    margin-top: 5px;

    color: #f2f6fb;

    font-size: 31px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: -0.045em;
}


.stat-card p {
    margin-top: 8px;

    color: #5f7087;

    font-size: 9px;
}


/* =========================================================
   8. PANELS
========================================================= */

.dashboard-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 17px;

    margin-bottom: 17px;
}


.panel {
    min-width: 0;

    padding: 21px;

    border:
        1px solid var(--border);

    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 48, 0.78),
            rgba(9, 20, 34, 0.89)
        );

    box-shadow:
        var(--shadow-panel);
}


.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.panel-eyebrow {
    display: block;

    margin-bottom: 3px;

    color: #5f7189;

    font-size: 8px;
    font-weight: 750;

    letter-spacing: 0.11em;

    text-transform: uppercase;
}


.panel-header h3,
.prospects-header h3 {
    color: #e7edf6;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: -0.02em;
}


.panel-menu {
    width: 31px;
    height: 31px;

    border:
        1px solid transparent;

    border-radius: 8px;

    background: transparent;

    color: #68798e;

    font-size: 17px;

    cursor: pointer;
}


.panel-menu:hover {
    border-color:
        var(--border);

    background:
        rgba(255, 255, 255, 0.025);
}


.panel-link {
    color: #6f9fe0;

    font-size: 9px;
    font-weight: 650;
}


/* =========================================================
   9. PIPELINE PANEL
========================================================= */

.pipeline-content {
    min-height: 225px;

    display: grid;

    grid-template-columns:
        180px 1fr;

    align-items: center;

    gap: 36px;
}


.pipeline-total {
    display: flex;
    align-items: center;
    justify-content: center;
}


.pipeline-ring {
    position: relative;

    width: 145px;
    height: 145px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        conic-gradient(
            #4ade80 0deg 162deg,
            #e8c94f 162deg 360deg
        );

    box-shadow:
        0 0 35px rgba(79, 140, 255, 0.055);
}


.pipeline-ring::after {
    content: "";

    position: absolute;

    inset: 12px;

    border-radius: 50%;

    background:
        #0c1a2b;
}


.pipeline-ring-inner {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    text-align: center;
}


.pipeline-ring-inner strong {
    color: #eef4fa;

    font-size: 30px;

    line-height: 1;

    letter-spacing: -0.04em;
}


.pipeline-ring-inner span {
    margin-top: 5px;

    color: #687a91;

    font-size: 8px;

    text-transform: uppercase;
}


.pipeline-breakdown {
    display: flex;
    flex-direction: column;
}


.pipeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 13px;
}


.pipeline-row:first-child {
    margin-top: 0;
}


.pipeline-row-label {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #8898ab;

    font-size: 10px;
}


.legend-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
}


.legend-dot.approved {
    background: var(--green);
}


.legend-dot.review {
    background: var(--yellow);
}


.legend-dot.rejected {
    background: var(--red);
}


.pipeline-row-value {
    display: flex;
    align-items: center;

    gap: 7px;
}


.pipeline-row-value strong {
    color: #d7e1ec;

    font-size: 10px;
}


.pipeline-row-value span {
    color: #607087;

    font-size: 8px;
}


.progress-track {
    height: 5px;

    margin-top: 7px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.035);

    overflow: hidden;
}


.progress-fill {
    height: 100%;

    border-radius: 999px;
}


.progress-fill.approved {
    background:
        linear-gradient(
            90deg,
            #3abb69,
            #68df8d
        );
}


.progress-fill.review {
    background:
        linear-gradient(
            90deg,
            #c8aa32,
            #e9ce57
        );
}


.progress-fill.rejected {
    background:
        linear-gradient(
            90deg,
            #e75c72,
            #fb7185
        );
}


/* =========================================================
   10. ACTIVITY
========================================================= */

.activity-list {
    display: flex;
    flex-direction: column;
}


.activity-item {
    display: grid;

    grid-template-columns:
        34px 1fr;

    gap: 11px;

    padding:
        11px 0;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.065);
}


.activity-item:first-child {
    padding-top: 0;
}


.activity-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


.activity-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    font-size: 11px;
    font-weight: 800;
}


.activity-icon.success {
    border:
        1px solid rgba(74, 222, 128, 0.11);

    background:
        rgba(74, 222, 128, 0.06);

    color: #75dc96;
}


.activity-icon.research {
    border:
        1px solid rgba(79, 140, 255, 0.11);

    background:
        rgba(79, 140, 255, 0.06);

    color: #79abf0;
}


.activity-icon.warning {
    border:
        1px solid rgba(250, 204, 21, 0.11);

    background:
        rgba(250, 204, 21, 0.055);

    color: #d8c052;
}


.activity-icon.discovery {
    border:
        1px solid rgba(57, 213, 230, 0.11);

    background:
        rgba(57, 213, 230, 0.055);

    color: #62ceda;
}


.activity-copy strong {
    display: block;

    color: #cfd9e5;

    font-size: 9px;
}


.activity-copy p {
    margin-top: 2px;

    color: #76869b;

    font-size: 9px;

    line-height: 1.45;
}


.activity-copy span {
    display: block;

    margin-top: 4px;

    color: #536278;

    font-size: 7px;

    text-transform: uppercase;

    letter-spacing: 0.04em;
}


/* =========================================================
   11. PROSPECT TABLE PANEL
========================================================= */

.prospects-panel {
    margin-bottom: 17px;

    padding: 0;

    overflow: hidden;
}


.prospects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    padding:
        21px 21px 18px;

    border-bottom:
        1px solid var(--border);
}


.prospects-header p {
    margin-top: 5px;

    color: #617188;

    font-size: 9px;
}


.prospect-header-actions {
    display: flex;
    align-items: center;

    gap: 7px;
}


.search-box {
    min-width: 215px;
    height: 36px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        0 11px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.018);
}


.search-icon {
    color: #607087;

    font-size: 15px;
}


.search-box input {
    min-width: 0;

    width: 100%;

    border: 0;
    outline: none;

    background: transparent;

    color: #d6e0eb;

    font-size: 9px;
}


.search-box input::placeholder {
    color: #536278;
}


.filter-button {
    min-height: 36px;

    padding:
        0 11px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.015);

    color: #68798e;

    font-size: 8px;
    font-weight: 650;

    cursor: pointer;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.filter-button:hover {
    color: #aebdce;

    border-color:
        rgba(148, 163, 184, 0.18);
}


.filter-button.active {
    border-color:
        rgba(79, 140, 255, 0.16);

    background:
        rgba(79, 140, 255, 0.075);

    color: #83b2f4;
}


.table-wrapper {
    width: 100%;

    overflow-x: auto;
}


.prospect-table {
    width: 100%;

    border-collapse: collapse;

    table-layout: auto;
}


.prospect-table th {
    padding:
        11px 15px;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.07);

    background:
        rgba(255, 255, 255, 0.012);

    color: #536379;

    font-size: 7px;
    font-weight: 750;

    letter-spacing: 0.075em;

    text-align: left;

    text-transform: uppercase;

    white-space: nowrap;
}


.prospect-table td {
    padding:
        13px 15px;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.055);

    color: #8393a7;

    font-size: 9px;

    vertical-align: middle;
}


.prospect-table-row {
    transition:
        background 0.18s ease;
}


.prospect-table-row:hover {
    background:
        rgba(255, 255, 255, 0.018);
}


.prospect-table-row:last-child td {
    border-bottom: 0;
}


.company-cell {
    min-width: 220px;

    display: flex;
    align-items: center;

    gap: 11px;
}


.company-avatar {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border:
        1px solid rgba(79, 140, 255, 0.12);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(79, 140, 255, 0.09),
            rgba(57, 213, 230, 0.04)
        );

    color: #7eadef;

    font-size: 9px;
    font-weight: 800;
}


.company-cell strong {
    display: block;

    max-width: 210px;

    overflow: hidden;

    color: #d8e1eb;

    font-size: 9px;
    font-weight: 650;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.company-cell span {
    display: block;

    margin-top: 3px;

    color: #58687e;

    font-size: 8px;
}


.market-cell {
    min-width: 100px;
}


.market-cell strong {
    display: block;

    color: #9aa9bb;

    font-size: 9px;
    font-weight: 600;
}


.market-cell span {
    display: block;

    margin-top: 2px;

    color: #56667c;

    font-size: 8px;
}


.research-badge {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding:
        5px 8px;

    border:
        1px solid rgba(74, 222, 128, 0.1);

    border-radius: 999px;

    background:
        rgba(74, 222, 128, 0.045);

    color: #75bd8a;

    font-size: 7px;
    font-weight: 650;

    white-space: nowrap;
}


.research-badge.fallback {
    border-color:
        rgba(250, 204, 21, 0.1);

    background:
        rgba(250, 204, 21, 0.045);

    color: #c3ae50;
}


.research-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: currentColor;
}


.score-cell {
    min-width: 58px;
}


.score-cell strong {
    color: #dce5ef;

    font-size: 13px;
}


.score-cell span {
    color: #536278;

    font-size: 7px;
}


.score-cell.strong strong {
    color: #81d99b;
}


.score-cell.review strong {
    color: #d7c158;
}


.score-cell.moderate strong {
    color: #d9b55b;
}


.confidence-cell {
    min-width: 90px;
}


.confidence-cell strong {
    display: block;

    color: #a4b2c3;

    font-size: 8px;
    font-weight: 650;
}


.confidence-track {
    width: 74px;
    height: 3px;

    margin-top: 5px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.045);

    overflow: hidden;
}


.confidence-track span {
    display: block;

    height: 100%;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #4f8cff,
            #39d5e6
        );
}


.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 67px;

    padding:
        5px 8px;

    border-radius: 999px;

    font-size: 7px;
    font-weight: 750;

    letter-spacing: 0.035em;

    text-transform: uppercase;
}


.status-badge.approved {
    border:
        1px solid rgba(74, 222, 128, 0.11);

    background:
        rgba(74, 222, 128, 0.055);

    color: #76d893;
}


.status-badge.review {
    border:
        1px solid rgba(250, 204, 21, 0.1);

    background:
        rgba(250, 204, 21, 0.05);

    color: #d0ba51;
}


.row-action {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(148, 163, 184, 0.08);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.018);

    color: #6e91c0;

    font-size: 12px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.row-action:hover {
    transform:
        translateX(2px);

    border-color:
        rgba(79, 140, 255, 0.18);

    background:
        rgba(79, 140, 255, 0.06);

    color: #8cbaff;
}


.table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        13px 21px;

    border-top:
        1px solid rgba(148, 163, 184, 0.065);

    background:
        rgba(255, 255, 255, 0.009);
}


.table-footer p {
    color: #5d6d83;

    font-size: 8px;
}


.table-footer strong {
    color: #8e9caf;
}


.pagination {
    display: flex;

    gap: 5px;
}


.pagination button {
    width: 27px;
    height: 27px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    background:
        rgba(255, 255, 255, 0.015);

    color: #63748a;

    font-size: 8px;
}


.pagination button.active {
    border-color:
        rgba(79, 140, 255, 0.14);

    background:
        rgba(79, 140, 255, 0.07);

    color: #80aff0;
}


.pagination button:disabled {
    cursor: not-allowed;

    opacity: 0.35;
}


/* =========================================================
   12. RESEARCH HEALTH
========================================================= */

.lower-grid {
    align-items: stretch;
}


.health-list {
    display: flex;
    flex-direction: column;
}


.health-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        13px 0;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.06);
}


.health-row:first-child {
    padding-top: 0;
}


.health-row:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


.health-row > div:first-child {
    min-width: 0;
}


.health-row strong {
    display: block;

    color: #c7d2df;

    font-size: 9px;
}


.health-row span {
    display: block;

    margin-top: 3px;

    color: #5f7087;

    font-size: 8px;
}


.health-result {
    flex-shrink: 0;

    padding:
        5px 8px;

    border-radius: 999px;

    font-size: 7px;
    font-weight: 750;

    text-transform: uppercase;
}


.health-result.good {
    border:
        1px solid rgba(74, 222, 128, 0.1);

    background:
        rgba(74, 222, 128, 0.05);

    color: #71cd8d;
}


.health-result.warning {
    border:
        1px solid rgba(250, 204, 21, 0.1);

    background:
        rgba(250, 204, 21, 0.05);

    color: #cab553;
}


/* =========================================================
   13. AI ENGINE CARD
========================================================= */

.engine-card {
    min-height: 175px;

    display: grid;

    grid-template-columns:
        155px 1fr;

    align-items: center;

    gap: 25px;
}


.engine-visual {
    position: relative;

    width: 130px;
    height: 130px;

    display: grid;
    place-items: center;

    margin-inline: auto;
}


.engine-core {
    position: relative;
    z-index: 3;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(96, 165, 250, 0.24);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #295896,
            #122a4c
        );

    color: #a8d0ff;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 0 30px rgba(79, 140, 255, 0.18);
}


.engine-orbit {
    position: absolute;

    border:
        1px solid rgba(96, 165, 250, 0.11);

    border-radius: 50%;
}


.orbit-one {
    width: 95px;
    height: 95px;

    animation:
        rotate 13s linear infinite;
}


.orbit-one::before {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    top: -3px;
    left: 50%;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 10px rgba(57, 213, 230, 0.55);
}


.orbit-two {
    width: 125px;
    height: 125px;

    border-style: dashed;

    animation:
        rotateReverse 20s linear infinite;
}


@keyframes rotate {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }

}


@keyframes rotateReverse {

    from {
        transform:
            rotate(360deg);
    }

    to {
        transform:
            rotate(0deg);
    }

}


.engine-copy {
    min-width: 0;
}


.engine-status {
    display: flex;
    align-items: center;

    gap: 8px;
}


.engine-status strong {
    color: #b8c6d5;

    font-size: 10px;
}


.engine-copy > p {
    margin-top: 9px;

    color: #66768b;

    font-size: 9px;

    line-height: 1.65;
}


.engine-metrics {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 7px;

    margin-top: 17px;
}


.engine-metrics div {
    padding: 8px;

    border:
        1px solid rgba(148, 163, 184, 0.07);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.012);
}


.engine-metrics span {
    display: block;

    color: #56667c;

    font-size: 7px;

    text-transform: uppercase;
}


.engine-metrics strong {
    display: block;

    margin-top: 3px;

    color: #9eacbd;

    font-size: 8px;
}


/* =========================================================
   14. DASHBOARD FOOTER
========================================================= */

.dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        13px 2px 0;

    color: #4f5f74;

    font-size: 8px;
}


.dashboard-footer div {
    display: flex;
    align-items: center;

    gap: 7px;
}


.dashboard-footer .system-dot {
    width: 5px;
    height: 5px;
}


/* =========================================================
   15. PROSPECT DRAWER
========================================================= */

.prospect-drawer {
    position: fixed;

    top: 0;
    right: 0;
    z-index: 600;

    width:
        min(
            440px,
            100%
        );

    height: 100vh;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            #0c1a2b,
            #07111e
        );

    border-left:
        1px solid rgba(148, 163, 184, 0.12);

    box-shadow:
        -35px 0 80px rgba(0, 0, 0, 0.42);

    transform:
        translateX(105%);

    visibility: hidden;

    transition:
        transform 0.3s ease,
        visibility 0.3s ease;
}


.prospect-drawer.open {
    transform:
        translateX(0);

    visibility: visible;
}


.drawer-header {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        20px 23px;

    border-bottom:
        1px solid var(--border);
}


.drawer-header h2 {
    color: #e8eef7;

    font-size: 18px;

    letter-spacing: -0.025em;
}


.drawer-close {
    width: 35px;
    height: 35px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.02);

    color: #8797aa;

    font-size: 20px;

    cursor: pointer;
}


.drawer-body {
    flex: 1;

    padding:
        6px 23px 25px;

    overflow-y: auto;
}


.drawer-section {
    padding:
        20px 0;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.07);
}


.drawer-label {
    display: block;

    margin-bottom: 12px;

    color: #63758c;

    font-size: 8px;
    font-weight: 750;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.drawer-score-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;
}


.drawer-score-grid div {
    padding: 13px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.018);
}


.drawer-score-grid span {
    display: block;

    color: #5f7087;

    font-size: 8px;
}


.drawer-score-grid strong {
    display: block;

    margin-top: 5px;

    color: #dce6f0;

    font-size: 16px;
}


.detail-list {
    display: flex;
    flex-direction: column;
}


.detail-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        9px 0;
}


.detail-list dt {
    color: #64758b;

    font-size: 9px;
}


.detail-list dd {
    color: #a8b6c7;

    font-size: 9px;
    font-weight: 600;

    text-align: right;
}


.drawer-section > p {
    color: #79899e;

    font-size: 10px;

    line-height: 1.7;
}


.evidence-placeholder {
    padding: 18px;

    border:
        1px dashed rgba(148, 163, 184, 0.12);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.012);

    text-align: center;
}


.evidence-placeholder > span {
    display: block;

    margin-bottom: 7px;

    color: #6b92c5;

    font-size: 18px;
}


.evidence-placeholder p {
    color: #617187;

    font-size: 9px;

    line-height: 1.6;
}


.drawer-footer {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

    padding:
        16px 23px;

    border-top:
        1px solid var(--border);

    background:
        rgba(5, 12, 21, 0.86);
}


/* =========================================================
   16. MOBILE SIDEBAR OVERLAY
========================================================= */

.sidebar-overlay {
    position: fixed;

    inset: 0;
    z-index: 250;

    background:
        rgba(2, 7, 13, 0.7);

    opacity: 0;

    visibility: hidden;

    backdrop-filter: blur(3px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.sidebar-overlay.visible {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   17. TABLE FILTERING HELPER
========================================================= */

.prospect-table-row.hidden {
    display: none;
}


/* =========================================================
   18. SCROLLBARS
========================================================= */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}


::-webkit-scrollbar-track {
    background:
        rgba(255, 255, 255, 0.01);
}


::-webkit-scrollbar-thumb {
    border-radius: 999px;

    background:
        rgba(148, 163, 184, 0.15);
}


::-webkit-scrollbar-thumb:hover {
    background:
        rgba(148, 163, 184, 0.24);
}


/* =========================================================
   19. ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline:
        2px solid var(--blue-light);

    outline-offset: 3px;
}


::selection {
    background:
        rgba(79, 140, 255, 0.32);

    color: white;
}


/* =========================================================
   20. RESPONSIVE - MEDIUM DESKTOP
========================================================= */

@media (max-width: 1200px) {

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


    .dashboard-grid {
        grid-template-columns: 1fr;
    }


    .activity-panel {
        min-height: auto;
    }


    .engine-card {
        grid-template-columns:
            160px 1fr;
    }

}


/* =========================================================
   21. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 920px) {

    :root {
        --sidebar-width: 245px;
    }


    .sidebar {
        transform:
            translateX(-105%);

        transition:
            transform 0.28s ease;
    }


    .sidebar.open {
        transform:
            translateX(0);
    }


    .sidebar-close {
        display: block;
    }


    .main-shell {
        width: 100%;

        margin-left: 0;
    }


    .menu-button {
        display: grid;
        place-items: center;
    }


    .dashboard-main {
        padding:
            27px 22px 35px;
    }


    .topbar {
        padding:
            0 22px;
    }


    .prospects-header {
        align-items: stretch;
        flex-direction: column;
    }


    .prospect-header-actions {
        flex-wrap: wrap;
    }


    .search-box {
        flex:
            1 1 230px;
    }

}


/* =========================================================
   22. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 650px) {

    .topbar {
        min-height: 70px;

        padding:
            0 14px;
    }


    .topbar h1 {
        font-size: 13px;
    }


    .page-eyebrow {
        display: none;
    }


    .topbar-actions .button-secondary,
    .icon-button {
        display: none;
    }


    .topbar-actions .button-primary {
        min-height: 36px;

        padding:
            0 11px;

        font-size: 9px;
    }


    .dashboard-main {
        padding:
            22px 14px 30px;
    }


    .dashboard-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 13px;
    }


    .heading-row {
        align-items: flex-start;
        flex-direction: column;

        gap: 7px;
    }


    .dashboard-heading h2 {
        font-size: 22px;
    }


    .last-updated {
        width: 100%;
    }


    .stats-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .stat-card {
        padding: 17px;
    }


    .pipeline-content {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .pipeline-ring {
        width: 130px;
        height: 130px;
    }


    .panel {
        padding: 17px;
    }


    .prospects-panel {
        padding: 0;
    }


    .prospects-header {
        padding: 17px;
    }


    .prospect-header-actions {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);
    }


    .search-box {
        width: 100%;
        min-width: 0;

        grid-column:
            1 / -1;
    }


    .filter-button {
        width: 100%;
    }


    .table-footer {
        align-items: flex-start;
        flex-direction: column;
    }


    .engine-card {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .engine-status {
        justify-content: center;
    }


    .engine-metrics {
        text-align: left;
    }


    .dashboard-footer {
        align-items: flex-start;
        flex-direction: column;
    }


    .drawer-footer {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   23. VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .sidebar {
        width:
            min(
                86vw,
                285px
            );
    }


    .topbar-actions .button-primary .button-icon {
        display: none;
    }


    .dashboard-heading h2 {
        font-size: 20px;
    }


    .environment-badge {
        font-size: 7px;
    }


    .engine-metrics {
        grid-template-columns: 1fr;
    }


    .drawer-score-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   24. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

}
/* =========================================================
   25. READABILITY / TYPOGRAPHY UPGRADE
========================================================= */

/* Sidebar */

.brand-copy strong {
    font-size: 15px;
}

.brand-copy small {
    font-size: 10px;
}

.nav-label {
    font-size: 10px;
}

.nav-item {
    min-height: 47px;

    font-size: 14px;
}

.nav-icon {
    font-size: 17px;
}

.nav-count,
.coming-soon {
    font-size: 9px;
}

.system-card-header strong {
    font-size: 12px;
}

.system-card p {
    font-size: 10px;
}

.profile-copy strong {
    font-size: 12px;
}

.profile-copy span {
    font-size: 10px;
}


/* Top navigation */

.page-eyebrow {
    font-size: 9px;
}

.topbar h1 {
    font-size: 18px;
}

.button {
    font-size: 12px;
}


/* Dashboard heading */

.dashboard-heading h2 {
    font-size: 29px;
}

.dashboard-heading > div > p {
    font-size: 13px;
}

.environment-badge {
    font-size: 9px;
}

.last-updated span {
    font-size: 9px;
}

.last-updated strong {
    font-size: 11px;
}


/* Statistic cards */

.stat-label {
    font-size: 10px;
}

.stat-value {
    font-size: 35px;
}

.stat-card p {
    font-size: 11px;
}

.stat-trend {
    font-size: 8px;
}


/* Panel headings */

.panel-eyebrow {
    font-size: 9px;
}

.panel-header h3,
.prospects-header h3 {
    font-size: 17px;
}

.panel-link {
    font-size: 10px;
}


/* Pipeline */

.pipeline-ring-inner strong {
    font-size: 34px;
}

.pipeline-ring-inner span {
    font-size: 9px;
}

.pipeline-row-label {
    font-size: 12px;
}

.pipeline-row-value strong {
    font-size: 12px;
}

.pipeline-row-value span {
    font-size: 10px;
}


/* Activity */

.activity-copy strong {
    font-size: 11px;
}

.activity-copy p {
    font-size: 10px;
}

.activity-copy span {
    font-size: 8px;
}


/* Prospect area */

.prospects-header p {
    font-size: 11px;
}

.search-box {
    height: 40px;
}

.search-box input {
    font-size: 11px;
}

.filter-button {
    min-height: 40px;

    font-size: 10px;
}


/* Prospect table */

.prospect-table th {
    padding:
        13px 16px;

    font-size: 9px;
}

.prospect-table td {
    padding:
        15px 16px;

    font-size: 11px;
}

.company-avatar {
    width: 40px;
    height: 40px;

    font-size: 10px;
}

.company-cell strong {
    font-size: 11px;
}

.company-cell span {
    font-size: 9px;
}

.market-cell strong {
    font-size: 11px;
}

.market-cell span {
    font-size: 9px;
}

.research-badge {
    padding:
        6px 9px;

    font-size: 9px;
}

.score-cell strong {
    font-size: 15px;
}

.score-cell span {
    font-size: 9px;
}

.confidence-cell strong {
    font-size: 10px;
}

.status-badge {
    min-width: 76px;

    padding:
        6px 9px;

    font-size: 9px;
}

.table-footer p {
    font-size: 10px;
}


/* Research health */

.health-row strong {
    font-size: 11px;
}

.health-row span {
    font-size: 10px;
}

.health-result {
    font-size: 9px;
}


/* AI engine */

.engine-status strong {
    font-size: 12px;
}

.engine-copy > p {
    font-size: 11px;
}

.engine-metrics span {
    font-size: 8px;
}

.engine-metrics strong {
    font-size: 10px;
}


/* Dashboard footer */

.dashboard-footer {
    font-size: 10px;
}


/* Prospect drawer */

.drawer-label {
    font-size: 9px;
}

.drawer-score-grid span {
    font-size: 10px;
}

.drawer-score-grid strong {
    font-size: 18px;
}

.detail-list dt,
.detail-list dd {
    font-size: 11px;
}

.drawer-section > p {
    font-size: 12px;
}

.evidence-placeholder p {
    font-size: 11px;
}


/* Keep mobile comfortable */

@media (max-width: 650px) {

    .dashboard-heading h2 {
        font-size: 24px;
    }

    .topbar h1 {
        font-size: 15px;
    }

    .prospect-table th {
        font-size: 8px;
    }

    .prospect-table td {
        font-size: 10px;
    }

}
/* =========================================================
   26. ADMIN TOAST NOTIFICATIONS
========================================================= */

.admin-toast {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 1000;

    width:
        min(
            390px,
            calc(100% - 32px)
        );

    display: grid;

    grid-template-columns:
        38px 1fr;

    gap: 12px;

    padding: 15px;

    border:
        1px solid rgba(96, 165, 250, 0.18);

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 31, 51, 0.98),
            rgba(8, 18, 31, 0.98)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.4);

    opacity: 0;

    transform:
        translateY(18px);

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.admin-toast.visible {
    opacity: 1;

    transform:
        translateY(0);
}


.admin-toast-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(79, 140, 255, 0.16);

    border-radius: 10px;

    background:
        rgba(79, 140, 255, 0.08);

    color: #8cbcff;

    font-size: 13px;
    font-weight: 800;
}


.admin-toast.success .admin-toast-icon {
    border-color:
        rgba(74, 222, 128, 0.15);

    background:
        rgba(74, 222, 128, 0.07);

    color: #7ddd9a;
}


.admin-toast-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.admin-toast-copy strong {
    color: #e2eaf3;

    font-size: 12px;
}


.admin-toast-copy span {
    margin-top: 3px;

    color: #7d8da1;

    font-size: 11px;

    line-height: 1.5;
}


@media (max-width: 650px) {

    .admin-toast {
        right: 16px;
        bottom: 16px;
        left: 16px;

        width: auto;
    }

}