:root {
    --blue: #1677ff;
    --blue-dark: #095fd1;
    --blue-soft: #eaf4ff;
    --blue-pale: #f5faff;
    --border: #d8e7f7;
    --text: #172033;
    --muted: #66768a;
    --bg: #f4f9ff;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    margin: 0 !important;
    padding-top: 72px !important;
    padding-left: 250px !important;
    min-height: 100vh;
    background:
        radial-gradient(circle at 0 0, #e6f3ff 0, transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #f1f7fd 100%) !important;
    color: var(--text) !important;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif !important;
}

/* =========================
   TOP BAR
========================= */

.vf-topbar {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;

    display: flex;
    align-items: center;
    gap: 22px;

    padding: 0 24px;

    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(29,78,126,.05);
}

.vf-brand {
    width: 205px;
    display: flex;
    align-items: center;
    gap: 11px;

    color: #111827;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
}

.vf-play-logo {
    width: 39px;
    height: 28px;

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

    border-radius: 9px;
    background: var(--blue);
    box-shadow: 0 5px 15px rgba(22,119,255,.22);
}

.vf-play-logo:after {
    content: "";
    width: 0;
    height: 0;

    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid white;

    margin-left: 2px;
}

.vf-search {
    flex: 1;
    max-width: 660px;
    height: 43px;

    display: flex;
    align-items: center;

    margin: auto;
    padding: 0 16px;

    color: #8090a4;
    background: #fff;

    border: 1px solid #cfdeee;
    border-radius: 22px;
}

.vf-avatar {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;
    background: var(--blue);
    color: white;

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

/* =========================
   SIDEBAR
========================= */

.vf-sidebar {
    position: fixed;
    z-index: 9998;

    left: 0;
    top: 72px;
    bottom: 0;

    width: 250px;

    padding: 17px 11px;

    overflow-y: auto;

    background: #fbfdff;
    border-right: 1px solid var(--border);
}

.vf-side-title {
    padding: 15px 12px 7px;

    color: #5590d2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;

    text-transform: uppercase;
}

.vf-nav {
    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 47px;

    margin: 3px 0;
    padding: 10px 13px;

    color: #233248;
    text-decoration: none;

    border-radius: 10px;

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

.vf-nav:hover {
    color: var(--blue);
    background: #edf6ff;
}

.vf-nav.primary {
    color: #075fd0;
    background: #dfedff;
}

.vf-icon {
    width: 25px;
    text-align: center;
    font-size: 18px;
}

.vf-divider {
    height: 1px;
    margin: 13px 8px;
    background: #e6eef7;
}

.vf-status {
    margin: 22px 8px 8px;
    padding: 14px;

    background: #f3f9ff;

    border: 1px solid #cee3fa;
    border-radius: 12px;

    font-size: 12px;
    line-height: 1.6;
}

.vf-status strong {
    display: block;
    margin-bottom: 5px;
}

.vf-online {
    color: #15803d;
}

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

body > .container,
.container,
main {
    max-width: 1450px !important;
}

.container,
main {
    width: calc(100% - 36px) !important;
    margin: 18px !important;
}

h1 {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: #101827 !important;
    letter-spacing: -.6px;
}

h2 {
    font-size: 23px !important;
    font-weight: 800 !important;
    color: #101827 !important;
}

h3 {
    color: #172033 !important;
}

/* =========================
   CARDS
========================= */

form,
.card,
.panel,
.box,
.job,
.job-card {
    background: rgba(255,255,255,.98) !important;

    border: 1px solid var(--border) !important;
    border-radius: 16px !important;

    box-shadow:
        0 4px 18px rgba(42,91,142,.06) !important;
}

form {
    padding: 25px !important;
}

.job,
.job-card {
    transition: .18s ease;
}

.job:hover,
.job-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(42,91,142,.10) !important;
}

/* =========================
   INPUTS
========================= */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"],
textarea,
select {
    width: 100%;

    min-height: 44px;

    padding: 10px 13px !important;

    color: #172033 !important;
    background: #fff !important;

    border: 1px solid #cfdeec !important;
    border-radius: 10px !important;

    outline: none !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #7db6fa !important;
    box-shadow: 0 0 0 4px rgba(22,119,255,.09) !important;
}

input[type="file"] {
    min-height: 90px;

    padding: 26px !important;

    background: #f7fbff !important;

    border: 2px dashed #94c4ff !important;
}

/* =========================
   BUTTONS
========================= */

button,
.btn,
a.btn,
input[type="submit"] {
    min-height: 42px;

    padding: 10px 17px !important;

    color: #fff !important;
    background: var(--blue) !important;

    border: 0 !important;
    border-radius: 10px !important;

    text-decoration: none !important;
    font-weight: 700 !important;

    cursor: pointer;

    box-shadow: 0 5px 14px rgba(22,119,255,.18);
}

button:hover,
.btn:hover,
a.btn:hover,
input[type="submit"]:hover {
    background: var(--blue-dark) !important;
}

.btn.light,
a.btn.light {
    color: var(--blue) !important;
    background: #eef6ff !important;

    border: 1px solid #cde3fb !important;

    box-shadow: none !important;
}

/* =========================
   INFO BOXES
========================= */

.note {
    padding: 16px !important;

    color: #53657b !important;
    background: var(--blue-pale) !important;

    border: 1px solid #d6e9fc !important;
    border-radius: 12px !important;
}

.small,
.muted {
    color: var(--muted) !important;
}

/* =========================
   TABLES
========================= */

table {
    width: 100%;

    overflow: hidden;

    background: #fff;

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

    border-collapse: separate !important;
    border-spacing: 0 !important;

    box-shadow: 0 4px 16px rgba(42,91,142,.05);
}

th {
    color: #43556d !important;
    background: #edf6ff !important;

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

td,
th {
    padding: 13px 15px !important;
    border-bottom: 1px solid #edf2f7 !important;
}

/* =========================
   PROGRESS
========================= */

progress {
    width: 100%;
    height: 8px;
}

progress::-webkit-progress-bar {
    background: #e4edf7;
    border-radius: 999px;
}

progress::-webkit-progress-value {
    background: var(--blue);
    border-radius: 999px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    body {
        padding-left: 0 !important;
        padding-top: 66px !important;
    }

    .vf-sidebar {
        display: none;
    }

    .vf-topbar {
        height: 66px;
        padding: 0 13px;
    }

    .vf-brand {
        width: auto;
        font-size: 17px;
    }

    .vf-search {
        display: none;
    }

    .container,
    main {
        width: calc(100% - 20px) !important;
        margin: 10px !important;
    }
}
