:root {
    --jp-text: #182033;
    --jp-muted: #66748b;
    --jp-border: #d9e1ec;
    --jp-soft-border: #e8eef6;
    --jp-primary: #3b82f6;
    --jp-primary-dark: #2d6cdf;
    --jp-primary-soft: #edf4ff;
    --jp-bg: #f4f7fb;
    --jp-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    overflow: hidden;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--jp-text);
    background: var(--jp-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================
   Header
========================= */
header {
    position: relative;
    z-index: 1200;
}

.jp-header-top,
.jp-header-nav {
    position: fixed;
    left: 0;
    right: 0;
    overflow: visible;
}

.jp-header-top {
    top: 0;
    z-index: 1200;
    background: linear-gradient(180deg, #373b3e 0%, rgba(52, 58, 64, 0.78) 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jp-header-nav {
    top: 56px;
    z-index: 1190;
    background: #fff;
    border-bottom: 1px solid var(--jp-soft-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.jp-header-top-inner,
.jp-header-nav-inner {
    margin: 0 auto;
    padding: 0 14px;
    display: flex;
    align-items: center;
}

.jp-header-top-inner {
    min-height: 56px;
    justify-content: space-between;
    gap: 16px;
}

.jp-header-nav-inner {
    min-height: 48px;
    padding-left: 14px;
    gap: 4px;
    white-space: nowrap;
    position: relative;
    z-index: 20;
    overflow: visible;
}

.jp-header-start,
.jp-header-end {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

/* =========================
   Brand / User / Controls
========================= */
.jp-menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: all 0.18s ease;
}

.jp-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

.jp-menu-toggle svg,
.jp-rail-icon svg,
.jp-rail-subicon svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.jp-menu-toggle svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.jp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.jp-brand-mark {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 5px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 55%, #0ea5e9 100%);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.26);
}

.jp-brand-mark::before,
.jp-brand-mark::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
}

.jp-brand-mark::before {
    top: 8px;
    left: 8px;
    width: 18px;
    height: 18px;
}

.jp-brand-mark::after {
    right: 6px;
    bottom: 8px;
    width: 22px;
    height: 8px;
}

.jp-brand-copy {
    min-width: 0;
}

.jp-brand-title {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 800;
}

.jp-brand-subtitle {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jp-account-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border: 1px solid var(--jp-border);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--jp-text);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.jp-account-filter label {
    margin: 0;
    color: var(--jp-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jp-account-select {
    min-width: 220px;
    border: 0;
    background: transparent;
    color: var(--jp-text);
    font-weight: 700;
    box-shadow: none !important;
}

.jp-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px 7px 8px;
}

.jp-user-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    font-size: 0.88rem;
    font-weight: 800;
}

.jp-user-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.05;
}

.jp-user-copy strong {
    font-size: 0.92rem;
    white-space: nowrap;
}

.jp-user-copy span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.81rem;
    white-space: nowrap;
}

.jp-logout-btn,
.jp-auth-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    font-weight: 700;
    transition: color 0.15s ease, background 0.15s ease;
}

.jp-logout-btn {
    color: #fff;
}

.jp-auth-link {
    color: #fff;
}

.jp-logout-btn:hover {
    background: rgba(52, 58, 64, 0.92);
    color: #fff;
}

.jp-auth-link:hover,
.jp-auth-link:focus {
    color: var(--jp-primary-dark);
    background: transparent;
}

/* =========================
   Top Navigation / Dropdown
========================= */
.jp-top-dropdown {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.jp-top-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.jp-top-link,
.jp-top-dropdown:hover > .jp-top-link,
.jp-top-dropdown:focus-within > .jp-top-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    font-weight: 500;
    transition: color 0.15s ease;
}

.jp-top-link {
    color: #54667a;
}

.jp-top-link:hover,
.jp-top-link.active,
.jp-top-dropdown:hover > .jp-top-link,
.jp-top-dropdown:focus-within > .jp-top-link {
    color: var(--jp-primary-dark);
}

.jp-top-caret {
    margin-left: 8px;
    font-size: 0.76rem;
    opacity: 0.75;
}

.jp-top-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3000;
    min-width: 180px;
    margin-top: 0;
    padding: 6px;
    display: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jp-top-dropdown:hover > .jp-top-dropdown-menu,
.jp-top-dropdown:focus-within > .jp-top-dropdown-menu,
.jp-top-dropdown-menu:hover {
    display: block;
}

.jp-top-dropdown-menu .dropdown-item {
    padding: 8px 12px;
    border-radius: 5px;
    background: #fff !important;
    color: #54667a;
    font-weight: 500;
    transition: all 0.15s ease;
}

.jp-top-dropdown-menu .dropdown-item:hover,
.jp-top-dropdown-menu .dropdown-item.active {
    
    color: var(--jp-primary-dark);
}

/* =========================
   Layout Shell
========================= */
.jp-public-shell {
    max-width: 1440px;
    margin: 90px auto 0;
    padding: 10px;
}

.jp-app-shell {
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    width: 100%;
    overflow: hidden;
}

.jp-app-shell.is-expanded {
    grid-template-columns: 248px minmax(0, 1fr);
}

.jp-sidebar-rail {
    position: relative;
    top: 0;
    height: 100%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.jp-main-content {
    min-width: 0;
    height: 100%;
    overflow: auto;
    padding: 18px;
}

/* =========================
   Sidebar Navigation
========================= */
.jp-rail-nav {
    display: grid;
    gap: 6px;
    align-content: start;
    min-height: 100%;
    padding: 10px;
}

.jp-rail-group,
.jp-rail-submenu {
    display: grid;
    gap: 6px;
}

.jp-rail-submenu {
    padding-left: 8px;
}

.jp-rail-link,
.jp-rail-sublink {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 5px;
    color: #607086;
    overflow: hidden;
    transition: all 0.16s ease;
}

.jp-rail-link:hover,
.jp-rail-sublink:hover {
    background: #f7faff;
    color: #1f2a3d;
}

.jp-rail-link.active,
.jp-rail-sublink.active {
    background: var(--jp-primary-soft);
    color: var(--jp-primary-dark);
    box-shadow: inset 0 0 0 1px #cfe0ff;
}

.jp-rail-icon,
.jp-rail-subicon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jp-rail-icon svg,
.jp-rail-subicon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.9;
}

.jp-rail-text,
.jp-rail-subtext {
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.jp-app-shell:not(.is-expanded) .jp-rail-text,
.jp-app-shell:not(.is-expanded) .jp-rail-submenu {
    display: none;
}

.jp-app-shell:not(.is-expanded) .jp-rail-link,
.jp-app-shell:not(.is-expanded) .jp-rail-sublink {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    padding: 6px 4px;
    min-height: 46px;
}

.jp-app-shell:not(.is-expanded) .jp-rail-text {
    display: block;
    max-width: 100%;
    font-size: 0.6rem;
    line-height: 1.05;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
    .jp-header-top-inner {
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .jp-header-nav-inner {
        padding-left: 14px;
    }
}

@media (max-width: 991.98px) {
    html,
    body {
        overflow: auto;
    }

    .jp-header-top,
    .jp-header-nav {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }

    .jp-app-shell,
    .jp-app-shell.is-expanded {
        position: static;
        grid-template-columns: 1fr;
        width: auto;
        overflow: visible;
    }

    .jp-sidebar-rail {
        height: auto;
        margin: 14px;
        border: 1px solid var(--jp-soft-border);
    }

    .jp-app-shell:not(.is-expanded) .jp-rail-text,
    .jp-app-shell:not(.is-expanded) .jp-rail-submenu {
        display: block;
    }

    .jp-app-shell:not(.is-expanded) .jp-rail-link,
    .jp-app-shell:not(.is-expanded) .jp-rail-sublink {
        justify-content: flex-start;
        padding: 8px;
    }
}

@media (max-width: 767.98px) {
    .jp-header-top-inner,
    .jp-header-nav-inner,
    .jp-main-content,
    .jp-public-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .jp-account-filter {
        width: 100%;
        justify-content: space-between;
    }

    .jp-account-select {
        width: 100%;
        min-width: 0;
    }

    .jp-user-copy {
        display: none;
    }

    .jp-header-nav-inner {
        overflow-x: auto;
    }

    .jp-public-shell {
        margin-top: 0;
    }
}


/* =========================
   Smart responsive guardrails
========================= */
body:has(.jp-public-shell) {
    overflow: auto;
}

body:has(.jp-app-shell) {
    overflow: hidden;
}

.jp-main-content,
.jp-public-shell,
.jp-main-content > *,
.jp-public-shell > * {
    min-width: 0;
    max-width: 100%;
}

img,
video,
canvas,
svg {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

.table-responsive,
.dataTables_wrapper,
.card,
.modal-dialog,
.office-settings-page,
.ai-settings-page,
.conversation-show-page {
    max-width: 100%;
}

@media (max-width: 1200px) {
    .office-settings-context,
    .ai-settings-context {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-template-workspace,
    .schedule-grid,
    .schedule-grid--secondary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .office-settings-header,
    .ai-settings-header,
    .jobboard-access-head,
    .schedule-head,
    .ai-template-editor-head {
        align-items: stretch;
        flex-direction: column;
    }

    .office-settings-context,
    .ai-settings-context {
        grid-template-columns: 1fr;
    }

    .jobboard-access-layout {
        grid-template-columns: 1fr;
    }

    .jobboard-transfer-controls {
        flex-direction: row;
    }
}

/* Dashboard interview schedule toolbar */
.dashboard-schedule-toolbar {
    display: flex;
    align-items: end;
    gap: 14px;
    flex-wrap: nowrap;
    margin-bottom: 18px;
}

.dashboard-schedule-toolbar > * {
    margin-bottom: 0 !important;
}

.dashboard-schedule-toolbar #dashboardDateRange {
    min-width: 300px;
}

.dashboard-schedule-scope-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    white-space: nowrap;
}

.dashboard-schedule-scope-label {
    color: var(--jp-muted, #66748b);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dashboard-schedule-scope-toggle {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border: 1px solid var(--jp-border, #d9e1ec);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.dashboard-schedule-scope-btn {
    min-height: 36px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: var(--jp-muted, #66748b);
    padding: 0 13px;
    font-weight: 800;
    cursor: pointer;
}

.dashboard-schedule-scope-btn:hover {
    color: var(--jp-primary-dark, #2d6cdf);
    background: #f7faff;
}

.dashboard-schedule-scope-btn.is-active {
    color: #fff;
    background: var(--jp-primary-dark, #2d6cdf);
    box-shadow: 0 8px 16px rgba(45, 108, 223, 0.18);
}

@media (max-width: 767.98px) {
    .dashboard-schedule-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .dashboard-schedule-toolbar #dashboardDateRange,
    .dashboard-schedule-scope-filter,
    .dashboard-schedule-scope-toggle {
        width: 100%;
    }

    .dashboard-schedule-scope-filter {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-schedule-scope-btn {
        flex: 1 1 0;
    }
}

/* =========================
   Candidates cosmetic tightening
   Cosmetic-only: compact left rail + table sizing/spacing cleanup.
========================= */
@media (min-width: 992px) {
    .jp-app-shell {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .jp-app-shell.is-expanded {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .jp-sidebar-rail {
        width: 42px;
    }

    .jp-app-shell.is-expanded .jp-sidebar-rail {
        width: 220px;
    }

    .jp-rail-nav {
        padding: 4px 3px;
        gap: 4px;
    }

    .jp-rail-link,
    .jp-rail-sublink {
        min-height: 34px;
        padding: 4px 3px;
        gap: 6px;
    }

    .jp-app-shell:not(.is-expanded) .jp-rail-link,
    .jp-app-shell:not(.is-expanded) .jp-rail-sublink {
        padding: 4px 3px;
    }

    .jp-rail-icon,
    .jp-rail-subicon {
        width: 28px;
        height: 28px;
    }

    .jp-rail-icon svg,
    .jp-rail-subicon svg {
        width: 17px;
        height: 17px;
    }
}

/* Hide candidates helper copy/context lines. */
body:has(#candidateTable) .jp-main-content h1 + p,
body:has(#candidateTable) .jp-main-content h1 ~ p:first-of-type,
body:has(#candidateTable) .jp-main-content h1 ~ .text-primary,
body:has(#candidateTable) .jp-main-content h1 ~ .fw-bold,
body:has(#candidateTable) .jp-main-content h1 ~ .small {
    display: none !important;
}

/* Candidates table compact type + column sizing. */
#candidateTable {
    table-layout: fixed;
    width: 100% !important;
}

#candidateTable thead th {
    font-size: 0.82rem !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    padding: 10px 8px !important;
    white-space: normal !important;
    vertical-align: bottom !important;
}

#candidateTable tbody td {
    font-size: 0.89rem !important;
    line-height: 1.28 !important;
    padding: 10px 8px !important;
    vertical-align: middle !important;
}

#candidateTable th:nth-child(1),
#candidateTable td:nth-child(1) {
    width: 8.5%;
    font-size: 0.84rem !important;
}

#candidateTable th:nth-child(2),
#candidateTable td:nth-child(2),
#candidateTable th:nth-child(3),
#candidateTable td:nth-child(3) {
    width: 7.5%;
}

#candidateTable th:nth-child(4),
#candidateTable td:nth-child(4) {
    width: 16%;
}

#candidateTable th:nth-child(5),
#candidateTable td:nth-child(5) {
    width: 9%;
    white-space: nowrap !important;
}

#candidateTable th:nth-child(6),
#candidateTable td:nth-child(6) {
    width: 7%;
}

#candidateTable th:nth-child(7),
#candidateTable td:nth-child(7) {
    width: 9%;
    white-space: normal !important;
    overflow-wrap: anywhere;
}

#candidateTable th:nth-child(8),
#candidateTable td:nth-child(8) {
    width: 10%;
    font-size: 0.83rem !important;
    line-height: 1.22 !important;
}

#candidateTable th:nth-child(9),
#candidateTable td:nth-child(9) {
    width: 12%;
    white-space: normal !important;
    overflow-wrap: anywhere;
}

#candidateTable th:nth-child(10),
#candidateTable td:nth-child(10) {
    width: 74px !important;
    min-width: 74px !important;
    max-width: 74px !important;
    text-align: right !important;
    white-space: nowrap !important;
}

#candidateTable td:nth-child(10) > div,
#candidateTable td:nth-child(10) .d-inline-flex {
    justify-content: flex-end !important;
    gap: 5px !important;
}

#candidateTable td:nth-child(10) .btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
}

#candidateTable .badge,
#candidateTable .badge.rounded-pill {
    font-size: 0.72rem !important;
    border-radius: 5px !important;
    padding: 0.26rem 0.5rem !important;
}

#candidateTable td:nth-child(9) .badge,
#candidateTable td:nth-child(9) .badge.rounded-pill {
    max-width: 100%;
    white-space: normal !important;
}

/* Keep Search and Add Candidate close without touching behavior. */
body:has(#candidateTable) .dataTables_filter {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
}

body:has(#candidateTable) .dataTables_filter .btn,
body:has(#candidateTable) #btnAddCandidate {
    margin-left: 4px !important;
}


/* =========================
   Candidates title/button final size tweak
   Cosmetic-only: built on uploaded main(24).css.
========================= */
body:has(#candidateTable) .jp-main-content h1,
body:has(#candidateTable) .jp-main-content .page-title,
body:has(#candidateTable) .jp-main-content .candidates-title {
    font-size: clamp(1.6rem, 2.1vw, 2rem) !important;
    line-height: 1.16 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 14px !important;
}

body:has(#candidateTable) #btnAddCandidate,
body:has(#candidateTable) .dataTables_filter #btnAddCandidate,
body:has(#candidateTable) .btn-primary#btnAddCandidate {
    min-height: 38px !important;
    padding: 0 16px !important;
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    border-radius: 5px !important;
}

/* =========================
   Navigation cosmetic tightening
   Cosmetic-only: smaller top menu + tighter expanded sidebar.
========================= */
@media (min-width: 992px) {
    .jp-header-nav-inner {
        gap: 2px;
        min-height: 42px;
        padding-left: 14px;
    }

    .jp-top-link,
    .jp-top-dropdown:hover > .jp-top-link,
    .jp-top-dropdown:focus-within > .jp-top-link {
        min-height: 32px;
        padding: 6px 10px;
        font-size: 0.9rem;
        line-height: 1.15;
        font-weight: 500;
    }

    .jp-top-caret {
        margin-left: 5px;
        font-size: 0.68rem;
    }

    .jp-top-dropdown-menu {
        min-width: 150px;
        padding: 4px;
    }

    .jp-top-dropdown-menu .dropdown-item {
        padding: 6px 9px;
        font-size: 0.86rem;
        line-height: 1.2;
    }

    .jp-app-shell.is-expanded {
        grid-template-columns: 154px minmax(0, 1fr);
    }

    .jp-app-shell.is-expanded .jp-sidebar-rail {
        width: 154px;
    }

    .jp-app-shell.is-expanded .jp-rail-nav {
        padding: 5px 4px;
        gap: 3px;
    }

    .jp-app-shell.is-expanded .jp-rail-link,
    .jp-app-shell.is-expanded .jp-rail-sublink {
        min-height: 34px;
        padding: 5px 6px;
        gap: 5px;
    }

    .jp-app-shell.is-expanded .jp-rail-submenu {
        padding-left: 4px;
        gap: 3px;
    }

    .jp-app-shell.is-expanded .jp-rail-icon,
    .jp-app-shell.is-expanded .jp-rail-subicon {
        width: 22px;
        height: 22px;
    }

    .jp-app-shell.is-expanded .jp-rail-icon svg,
    .jp-app-shell.is-expanded .jp-rail-subicon svg {
        width: 15px;
        height: 15px;
    }

    .jp-app-shell.is-expanded .jp-rail-text,
    .jp-app-shell.is-expanded .jp-rail-subtext {
        font-size: 0.9rem;
        line-height: 1.15;
        font-weight: 700;
    }
}

/* =========================
   Candidate detail + conversation list compact v2
   Cosmetic-only: slightly smaller accepted banner, compact conversation list, 5px radius.
========================= */
#candidateCardPanel,
#candidateCardPanel * {
    border-radius: 5px !important;
}

#candidateCardPanel {
    font-size: 0.86rem !important;
    line-height: 1.3 !important;
}

#candidateCardPanel h1,
#candidateCardPanel h2,
#candidateCardPanel h3,
#candidateCardPanel .candidate-card-title,
#candidateCardName {
    font-size: clamp(1.25rem, 1.7vw, 1.55rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 6px !important;
}

#candidateCardPanel h4,
#candidateCardPanel .candidate-card-section-title,
#candidateCardPanel .candidate-applicant-name,
#candidateCardPanel .candidate-pipeline-title {
    font-size: 0.92rem !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
}

#candidateCardPanel p,
#candidateCardPanel span,
#candidateCardPanel label,
#candidateCardPanel .candidate-card-subline,
#candidateCardPanel .candidate-card-meta,
#candidateCardPanel .candidate-card-chip,
#candidateCardPanel .candidate-card-pane,
#candidateCardPanel .candidate-card-pane * {
    font-size: 0.80rem !important;
}

#candidateCardPanel .badge,
#candidateCardPanel .btn,
#candidateCardPanel button,
#candidateCardPanel .candidate-card-status,
#candidateCardPanel .candidate-card-pill,
#candidateCardPanel .candidate-card-chip {
    min-height: 28px !important;
    padding: 8px 8px !important;
    font-size: 0.78rem !important;
    border-radius: 5px !important;
}

#candidateCardPanel .candidate-card-header,
#candidateCardPanel .candidate-card-body,
#candidateCardPanel .candidate-card-footer {
    padding: 12px 16px !important;
}

#candidateCardPanel .candidate-card-tabs,
#candidateCardNav {
    gap: 1px !important;
}

#candidateCardPanel .candidate-card-tab,
#candidateCardNav .candidate-card-tab {
    padding: 6px 8px !important;
    font-size: 0.84rem !important;
    line-height: 1.16 !important;
    border-radius: 5px !important;
}

#candidateCardPanel .candidate-card-chip-row,
#candidateCardPanel .candidate-card-meta-row {
    gap: 6px !important;
}

#candidateCardPanel input,
#candidateCardPanel select,
#candidateCardPanel textarea,
#candidateCardPanel .form-control,
#candidateCardPanel .form-select {
    min-height: 32px !important;
    padding: 6px 8px !important;
    font-size: 0.84rem !important;
    border-radius: 5px !important;
}

#candidateCardPanel .candidate-pipeline-step,
#candidateCardPanel .candidate-pipeline-step * {
    font-size: 0.76rem !important;
}

#candidateCardPanel .candidate-pipeline-icon,
#candidateCardPanel .candidate-pipeline-dot {
    transform: scale(0.78) !important;
}

/* Accepted-booking banner on the candidate conversation page. */
.jp-main-content:has([href*="/conversations/show"]) .alert-success,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle,
.jp-main-content:has([href*="/conversations/show"]) [class*="accepted"],
.jp-main-content:has(a[href*="conversation_id="]) [class*="accepted"] {
    border-radius: 5px !important;
}

.jp-main-content:has([href*="/conversations/show"]) .alert-success,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle {
    padding: 14px 18px !important;
    font-size: 0.86rem !important;
    line-height: 1.28 !important;
}

.jp-main-content:has([href*="/conversations/show"]) .alert-success h1,
.jp-main-content:has([href*="/conversations/show"]) .alert-success h2,
.jp-main-content:has([href*="/conversations/show"]) .alert-success h3,
.jp-main-content:has([href*="/conversations/show"]) .alert-success h4,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success h1,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success h2,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success h3,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success h4,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle h1,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle h2,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle h3,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle h4,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle h1,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle h2,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle h3,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle h4 {
    font-size: 0.98rem !important;
    line-height: 1.18 !important;
    margin-bottom: 6px !important;
    font-weight: 800 !important;
}

.jp-main-content:has([href*="/conversations/show"]) .alert-success p,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success p,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle p,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle p {
    font-size: 0.86rem !important;
    line-height: 1.28 !important;
    margin-bottom: 6px !important;
}

.jp-main-content:has([href*="/conversations/show"]) .alert-success .btn,
.jp-main-content:has(a[href*="conversation_id="]) .alert-success .btn,
.jp-main-content:has([href*="/conversations/show"]) .bg-success-subtle .btn,
.jp-main-content:has(a[href*="conversation_id="]) .bg-success-subtle .btn {
    min-height: 30px !important;
    padding: 5px 10px !important;
    font-size: 0.82rem !important;
    border-radius: 5px !important;
}

/* Conversation list page: compact type without behavior changes. */
.jp-main-content:has([href*="/conversations/show"]),
.jp-main-content:has(a[href*="conversation_id="]) {
    font-size: 0.86rem !important;
}

.jp-main-content:has([href*="/conversations/show"]) h1,
.jp-main-content:has(a[href*="conversation_id="]) h1 {
    font-size: clamp(1.25rem, 1.7vw, 1.55rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
}

.jp-main-content:has([href*="/conversations/show"]) h2,
.jp-main-content:has([href*="/conversations/show"]) h3,
.jp-main-content:has(a[href*="conversation_id="]) h2,
.jp-main-content:has(a[href*="conversation_id="]) h3 {
    font-size: 0.96rem !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
}

.jp-main-content:has([href*="/conversations/show"]) p,
.jp-main-content:has(a[href*="conversation_id="]) p,
.jp-main-content:has([href*="/conversations/show"]) .text-muted,
.jp-main-content:has(a[href*="conversation_id="]) .text-muted {
    font-size: 0.84rem !important;
    line-height: 1.28 !important;
}

.jp-main-content:has([href*="/conversations/show"]) .card,
.jp-main-content:has(a[href*="conversation_id="]) .card,
.jp-main-content:has([href*="/conversations/show"]) .alert,
.jp-main-content:has(a[href*="conversation_id="]) .alert,
.jp-main-content:has([href*="/conversations/show"]) .table-responsive,
.jp-main-content:has(a[href*="conversation_id="]) .table-responsive {
    border-radius: 5px !important;
}

.jp-main-content:has([href*="/conversations/show"]) .card-body,
.jp-main-content:has(a[href*="conversation_id="]) .card-body,
.jp-main-content:has([href*="/conversations/show"]) .alert,
.jp-main-content:has(a[href*="conversation_id="]) .alert {
    padding: 12px 16px !important;
}

.jp-main-content:has([href*="/conversations/show"]) .btn,
.jp-main-content:has(a[href*="conversation_id="]) .btn,
.jp-main-content:has([href*="/conversations/show"]) button,
.jp-main-content:has(a[href*="conversation_id="]) button {
    min-height: 30px !important;
    padding: 5px 10px !important;
    font-size: 0.82rem !important;
    line-height: 1.12 !important;
    border-radius: 5px !important;
}

.jp-main-content:has([href*="/conversations/show"]) .dataTables_wrapper,
.jp-main-content:has(a[href*="conversation_id="]) .dataTables_wrapper {
    font-size: 0.84rem !important;
}

.jp-main-content:has([href*="/conversations/show"]) table thead th,
.jp-main-content:has(a[href*="conversation_id="]) table thead th {
    font-size: 0.78rem !important;
    line-height: 1.16 !important;
    padding: 8px 7px !important;
}

.jp-main-content:has([href*="/conversations/show"]) table tbody td,
.jp-main-content:has(a[href*="conversation_id="]) table tbody td {
    font-size: 0.84rem !important;
    line-height: 1.24 !important;
    padding: 8px 7px !important;
    vertical-align: middle !important;
}

.jp-main-content:has([href*="/conversations/show"]) .dataTables_length select,
.jp-main-content:has(a[href*="conversation_id="]) .dataTables_length select,
.jp-main-content:has([href*="/conversations/show"]) .dataTables_filter input,
.jp-main-content:has(a[href*="conversation_id="]) .dataTables_filter input,
.jp-main-content:has([href*="/conversations/show"]) select,
.jp-main-content:has(a[href*="conversation_id="]) select {
    min-height: 30px !important;
    padding: 4px 8px !important;
    font-size: 0.82rem !important;
    border-radius: 5px !important;
}

.jp-main-content:has([href*="/conversations/show"]) .pagination .page-link,
.jp-main-content:has(a[href*="conversation_id="]) .pagination .page-link {
    min-height: 28px !important;
    padding: 4px 8px !important;
    font-size: 0.8rem !important;
    border-radius: 5px !important;
}

/* =========================
   Dashboard schedule modal full-screen + close-button position
   Cosmetic-only: built on uploaded main(35).css.
========================= */
body:has(#dashboardInterviewScheduleModal.is-open) {
    overflow: hidden !important;
}

body:has(#dashboardInterviewScheduleModal.is-open) .jp-app-shell {
    position: fixed !important;
    inset: 0 !important;
    z-index: 6000 !important;
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow: visible !important;
    pointer-events: none !important;
}

body:has(#dashboardInterviewScheduleModal.is-open) .jp-sidebar-rail,
body:has(#dashboardInterviewScheduleModal.is-open) .jp-main-content > *:not(#dashboardInterviewScheduleModal) {
    pointer-events: none !important;
}

body:has(#dashboardInterviewScheduleModal.is-open) .jp-main-content {
    position: static !important;
    width: 100vw !important;
    height: 100vh !important;
    padding: 0 !important;
    overflow: visible !important;
    pointer-events: none !important;
}

#dashboardInterviewScheduleModal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 7000 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100vw !important;
    height: 100vh !important;
    padding: 14px !important;
    background: rgba(15, 23, 42, 0.52) !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    pointer-events: auto !important;
}

#dashboardInterviewScheduleModal.is-open {
    display: flex !important;
}

#dashboardInterviewScheduleModal [class*="modal-dialog"],
#dashboardInterviewScheduleModal [class*="modal-content"],
#dashboardInterviewScheduleModal [class*="modal-panel"],
#dashboardInterviewScheduleModal [class*="schedule-modal"],
#dashboardInterviewScheduleModal > .dashboard-schedule-dialog,
#dashboardInterviewScheduleModal > .dashboard-schedule-content,
#dashboardInterviewScheduleModal > .dashboard-schedule-panel,
#dashboardInterviewScheduleModal > div:not([class*="backdrop"])
{
    position: relative !important;
    width: min(1040px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    max-height: calc(100vh - 28px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    /* background: #fff !important; */
    /* border: 1px solid var(--jp-soft-border, #e8eef6) !important; */
    border-radius: 5px !important;
    /* box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24) !important; */
}

#dashboardInterviewScheduleModal [class*="modal-header"],
#dashboardInterviewScheduleModal .dashboard-schedule-header {
    position: relative !important;
    flex: 0 0 auto !important;
    padding: 12px 58px 12px 16px !important;
    border-bottom: 1px solid var(--jp-soft-border, #e8eef6) !important;
    border-radius: 5px 5px 0 0 !important;
}

#dashboardScheduleModalTitle {
    font-size: 1.05rem !important;
    line-height: 1.16 !important;
    margin: 0 0 4px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
}

#dashboardScheduleModalMeta {
    font-size: 0.82rem !important;
    line-height: 1.2 !important;
    color: var(--jp-muted, #66748b) !important;
    font-weight: 700 !important;
}

#dashboardScheduleModalBody {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    padding: 14px 16px !important;
    border-radius: 0 0 5px 5px !important;
}

#dashboardInterviewScheduleModal [data-dashboard-schedule-close] {
    position: absolute !important;
    top: 12px !important;
    right: 16px !important;
    z-index: 3 !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
    border-radius: 5px !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-list {
    display: grid !important;
    gap: 9px !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-item {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    border: 1px solid var(--jp-soft-border, #e8eef6) !important;
    border-radius: 5px !important;
    background: #fff !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-time {
    min-height: 48px !important;
    padding: 7px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f3f6fa !important;
    border-radius: 5px !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-time strong {
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    color: var(--jp-text, #182033) !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-time em {
    margin-top: 3px !important;
    font-size: 0.68rem !important;
    line-height: 1.1 !important;
    font-style: normal !important;
    font-weight: 800 !important;
    color: var(--jp-muted, #66748b) !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-name {
    font-size: 0.9rem !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    color: var(--jp-text, #182033) !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-meta,
#dashboardInterviewScheduleModal .dashboard-schedule-meta strong {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    color: var(--jp-muted, #66748b) !important;
    font-weight: 700 !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-open {
    min-width: 58px !important;
    min-height: 30px !important;
    padding: 5px 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #2563eb !important;
    border-radius: 5px !important;
    color: #2563eb !important;
    background: #fff !important;
    font-size: 0.78rem !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
}

#dashboardInterviewScheduleModal .dashboard-schedule-loading,
#dashboardInterviewScheduleModal .dashboard-schedule-empty {
    padding: 14px !important;
    border: 1px solid var(--jp-soft-border, #e8eef6) !important;
    border-radius: 5px !important;
    font-size: 0.86rem !important;
    color: var(--jp-muted, #66748b) !important;
}

@media (max-width: 767.98px) {
    #dashboardInterviewScheduleModal {
        padding: 8px !important;
    }

    #dashboardInterviewScheduleModal [class*="modal-dialog"],
    #dashboardInterviewScheduleModal [class*="modal-content"],
    #dashboardInterviewScheduleModal [class*="modal-panel"],
    #dashboardInterviewScheduleModal [class*="schedule-modal"],
    #dashboardInterviewScheduleModal > .dashboard-schedule-dialog,
    #dashboardInterviewScheduleModal > .dashboard-schedule-content,
    #dashboardInterviewScheduleModal > .dashboard-schedule-panel,
    #dashboardInterviewScheduleModal > div:not([class*="backdrop"]) {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        max-height: calc(100vh - 16px) !important;
    }

    #dashboardInterviewScheduleModal .dashboard-schedule-item {
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
    }

    #dashboardInterviewScheduleModal .dashboard-schedule-open {
        width: 100% !important;
    }
}


/* Candidate AI Parse review: highlight parsed fields that differ from current candidate values. */
#candidateAiParseReviewForm .form-control.candidate-ai-parse-changed {
    border-color: #dc2626 !important;
    background: #fff7f7;
    box-shadow: 0 0 0 0.16rem rgba(220, 38, 38, 0.15) !important;
}

#candidateAiParseReviewForm .form-control.candidate-ai-parse-changed:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.18) !important;
}

/* Candidates toolbar job board filter / compact controls */
.candidate-ai-parse-bar .candidate-ai-parse-toolbar {
    font-size: 0.88rem;
}

.candidate-ai-parse-bar .btn-sm {
    padding: 6px 12px;
    font-size: 0.86rem;
    font-weight: 700;
}

.candidate-ai-parse-bar .candidate-ai-auto-accept {
    color: var(--jp-muted, #66748b);
    font-size: 0.86rem;
    font-weight: 800;
}

.candidate-job-board-filter-control,
.candidate-status-filter-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.candidate-job-board-filter-control label,
.candidate-status-filter-control label {
    margin: 0;
    color: var(--jp-muted, #66748b);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.candidate-job-board-filter {
    min-width: 210px;
    max-width: 320px;
}

.candidate-status-filter {
    min-width: 175px;
    max-width: 240px;
}

.candidate-job-board-filter-control .select2-container {
    min-width: 210px;
    max-width: 320px;
    font-size: 0.88rem;
}

.candidate-status-filter-control .select2-container {
    min-width: 175px;
    max-width: 240px;
    font-size: 0.88rem;
}

/* Candidate chat voice controls: clean global auto-read + voice reply controls. */
#candidateChatForm .candidate-chat-voice-controls,
.candidate-chat-voice-controls {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 12px 0 8px !important;
    padding: 6px !important;
    border: 1px solid rgba(203, 213, 225, 0.85) !important;
    border-radius: 999px !important;
    background: rgba(248, 250, 252, 0.92) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06) !important;
    align-self: center !important;
}

#candidateChatForm button.candidate-chat-voice-pill,
button.candidate-chat-voice-pill,
.candidate-chat-voice-pill {
    appearance: none !important;
    -webkit-appearance: none !important;
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 9px 14px !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #475569 !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease !important;
}

#candidateChatForm button.candidate-chat-voice-pill:hover,
#candidateChatForm button.candidate-chat-voice-pill:focus,
button.candidate-chat-voice-pill:hover,
button.candidate-chat-voice-pill:focus {
    background: #ffffff !important;
    color: #1e3a8a !important;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08) !important;
    transform: translateY(-1px) !important;
}

#candidateChatForm button.candidate-chat-voice-pill.is-on,
button.candidate-chat-voice-pill.is-on {
    background: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22) !important;
}

#candidateChatForm button.candidate-chat-mic-pill.is-listening,
button.candidate-chat-mic-pill.is-listening {
    background: #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14), 0 10px 20px rgba(22, 163, 74, 0.18) !important;
}

.candidate-chat-voice-icon {
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(148, 163, 184, 0.18) !important;
    font-size: 0.78rem !important;
    line-height: 1 !important;
}

button.candidate-chat-voice-pill.is-on .candidate-chat-voice-icon,
button.candidate-chat-mic-pill.is-listening .candidate-chat-voice-icon {
    background: rgba(255, 255, 255, 0.24) !important;
}

#candidateChatForm button.candidate-chat-voice-pill:disabled,
button.candidate-chat-voice-pill:disabled {
    cursor: not-allowed !important;
    opacity: 0.42 !important;
    background: transparent !important;
    color: #94a3b8 !important;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 767.98px) {
    #candidateChatForm .candidate-chat-voice-controls,
    .candidate-chat-voice-controls {
        width: 100% !important;
        justify-content: flex-start !important;
        margin: 8px 0 0 !important;
        order: 2 !important;
    }

    #candidateChatForm button.candidate-chat-voice-pill,
    button.candidate-chat-voice-pill {
        min-height: 38px !important;
    }
}

/* Candidate chat voice controls hotfix: no native black button border. */
#candidateChatVoiceControls,
.candidate-chat-voice-controls {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#candidateChatVoiceControls button,
#candidateChatForm #candidateChatVoiceControls button,
#candidateChatForm button.candidate-chat-voice-pill,
button#candidateChatVoiceToggle,
button#candidateChatMicBtn {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12) !important;
    border-radius: 999px !important;
    background: #eef4ff !important;
    color: #1d4ed8 !important;
}

#candidateChatForm button.candidate-chat-voice-pill:focus,
#candidateChatForm button.candidate-chat-voice-pill:focus-visible,
button#candidateChatVoiceToggle:focus,
button#candidateChatVoiceToggle:focus-visible,
button#candidateChatMicBtn:focus,
button#candidateChatMicBtn:focus-visible {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16), 0 8px 18px rgba(37, 99, 235, 0.12) !important;
}

/* Candidate chat voice controls: icon-only, no native black button border. */
#candidateChatForm #candidateChatVoiceControls.candidate-chat-voice-controls {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 12px 0 8px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
#candidateChatForm button#candidateChatVoiceToggle,
#candidateChatForm button#candidateChatMicBtn,
#candidateChatForm button.candidate-chat-voice-pill {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    text-decoration: none !important;
}
#candidateChatForm button#candidateChatVoiceToggle:focus,
#candidateChatForm button#candidateChatVoiceToggle:focus-visible,
#candidateChatForm button#candidateChatVoiceToggle:active,
#candidateChatForm button#candidateChatMicBtn:focus,
#candidateChatForm button#candidateChatMicBtn:focus-visible,
#candidateChatForm button#candidateChatMicBtn:active,
#candidateChatForm button.candidate-chat-voice-pill:focus,
#candidateChatForm button.candidate-chat-voice-pill:focus-visible,
#candidateChatForm button.candidate-chat-voice-pill:active {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}
#candidateChatForm .candidate-chat-voice-status,
#candidateChatForm .candidate-chat-mic-status {
    display: none !important;
}
#candidateChatForm .candidate-chat-voice-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    font-size: 1.08rem !important;
    line-height: 1 !important;
}
