:root {
    --nm-primary-navy: #123B63;
    --nm-secondary-blue: #1E5A96;
    --nm-accent-gold: #C89B3C;
    --nm-background: #F7F8FA;
    --nm-surface: #FFFFFF;
    --nm-border: #D5DCE5;
    --nm-text-primary: #1D2733;
    --nm-text-secondary: #5B6776;
    --nm-success: #1E6B3A;
    --nm-warning: #A15C00;
    --nm-error: #B42318;
    --nm-info: #005EA2;

    --nm-font-heading: Georgia, "Times New Roman", serif;
    --nm-font-body: Arial, Helvetica, sans-serif;

    --nm-focus-ring: 0 0 0 3px rgba(30, 90, 150, 0.45);
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: var(--nm-font-body);
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--nm-text-primary);
    background: var(--nm-background);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--nm-font-heading);
    font-weight: 700;
    color: var(--nm-text-primary);
    letter-spacing: 0.01em;
}

/* =========================================================
   Accessibility — focus states (WCAG 2.1 AA)
   ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--nm-secondary-blue);
    outline-offset: 2px;
    box-shadow: var(--nm-focus-ring);
}

.btn:focus-visible {
    outline: 2px solid var(--nm-accent-gold);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1:has(+ table),
h2:has(+ table),
h3:has(+ table),
h4:has(+ table) {
    margin: 0 0 0.6rem;
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.05rem;
    line-height: 1.35;
}

.k-overlay {
    z-index: 99999;
}

.k-window .k-dialog {
    z-index: 999999;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--nm-surface);
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .08);
}

/* Default link color — branded, accessible */
a {
    color: var(--nm-secondary-blue);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

a:hover {
    color: var(--nm-primary-navy);
}

.public-container {
    max-width: 1200px;
    margin: 0 auto;
}

.public-container-1 {
    max-width: 1400px;
    margin: 0 auto;
}


.public-mt-20 {
    margin-top: 20px;
}

.public-mb-20 {
    margin-bottom: 20px;
}

/* General table styling */
div:has(> table:not(.k-grid-table)) {
    max-width: 100%;
    overflow: auto;
}

.styled-table {
    width: 60%;
    margin-left: 20px;
    /* Align table to the left */
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

/* Styling for table cells and headers */
.styled-table td,
.styled-table th {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--nm-border);
}

/* Header row styling */
.styled-table th {
    background-color: var(--nm-background);
    font-weight: bold;
}

/* Alternate row background colors */
.styled-table tr:nth-child(even) {
    background-color: var(--nm-background);
}

/* Optional: Row hover effect */
.styled-table tr:hover {
    background-color: var(--nm-background);
}

/* First column (header) specific styling */
.table-header {
    color: var(--nm-text-primary);
}

/* First column (value) specific styling */
.table-value {
    color: var(--nm-text-secondary);
}

/* Optional: Set a minimum width for the first column */
.table-header-cell {
    width: 200px;
}

.clear-after::after {
    content: "";
    clear: both;
    display: block;
}

.width-25 {
    width: 22.75%;
    margin-right: 3%;
    float: left;
}

.width-25:last-child {
    margin-right: 0;
}

.width-33 {
    width: 31.333%;
    margin-right: 3%;
    float: left;
}

.width-33:last-child {
    margin-right: 0;
}

.width-50 {
    float: left;
    width: 48.5%;
    margin-right: 3%;
}

.width-50:last-child {
    margin-right: 0;
}

.number-style {
    margin-top: 25%;
    margin-bottom: 25%;
}

#ai-editor {
    height: 300px;
    /* Increased height for the editor */
    border: 1px solid var(--nm-border);
    border-radius: 8px;
}

.ai-text-area {
    height: 225px !important;
}

.number-percentage {
    font-size: 36px;
    font-weight: bold;
    color: var(--nm-accent-gold);
}

.number-label {
    font-size: 14px;
    font-weight: bold;
    color: var(--nm-text-secondary);
}

.stretch {
    width: 100%;
}

.chart-container {
    background-color: var(--nm-background);
    border-radius: 20px;
    height: 300px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chart-container canvas {
    height: 100%;
    padding: 15px;
}

.bulk-assign-entry {
    border: 1px solid var(--nm-border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background-color: #fff;
}

.chart-title {
    text-align: left;
    font-size: 18px;
    /* Set font size */
    font-weight: bold;
    /* Make the title bold */
    color: var(--nm-text-primary);
    /* Darker font color */
}

hr {
    margin: 1.8rem 0;
    height: 10px;
    background: var(--nm-border);
    border: 0;
}

hr.small {
    margin: 12px 0;
    height: 1px;
}

.margin-vert-30 {
    margin: 1.8rem 0;
}

.margin-bot-30 {
    margin-bottom: 1.8rem;
}

.border-bottom {
    border-bottom: 1px solid var(--nm-border);
}

body.no-scroll {
    overflow: hidden;
}

/*Form Elements*/

.form-section-title {
    background: var(--nm-primary-navy);
    color: #fff;
    font-family: var(--nm-font-heading);
    font-size: 24px;
    padding: 20px;
    margin-bottom: 0;
}

.form-section-content {
    border: 1px solid var(--nm-border);
    border-top: 3px solid var(--nm-primary-navy);
    padding: 1.8rem;
    margin-bottom: 1.8rem;
    background: var(--nm-surface);
}

.form-title {
    font-family: var(--nm-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--nm-text-primary);
    margin-bottom: 15px;
}

.form-item {
    margin-bottom: 20px;
}

.form-item label {
    margin-bottom: 8px;
    display: block;
    color: var(--nm-text-primary);
    font-weight: 600;
}

.form-item label.cb {
    display: inline-block;
}

.form-item label.cb-fw {
    display: block;
}

.form-item.required label::before,
label.required::before {
    content: "*";
    display: inline-block;
    margin-right: 3px;
    color: var(--nm-error);
}

.form-item .question-comment label::before {
    content: ""
}

.form-item.required label.cb::before,
.form-item.required label.cb-fw::before {
    display: none;
}

.form-subsection {
    margin-left: 20px;
    margin-bottom: 12px;
}

input[type=text],
input[type=search],
input[type=date],
input[type=number],
input[type=email],
input[type=url],
input[type=password],
input[type=datetime-local],
input[type=tel],
select {
    font-family: var(--nm-font-body);
    font-size: 1em;
    color: var(--nm-text-primary);
    padding: 10px 12px;
    width: 100%;
    border: 1px solid var(--nm-border);
    border-radius: 4px;
    background: var(--nm-surface);
    transition: border-color .15s ease, box-shadow .15s ease;
}

textarea {
    font-family: var(--nm-font-body);
    font-size: 1em;
    color: var(--nm-text-primary);
    padding: 10px 12px;
    width: 100%;
    height: 125px;
    border: 1px solid var(--nm-border);
    border-radius: 4px;
    background: var(--nm-surface);
}

.form-container input[type=text],
.form-container input[type=number],
.form-container input[type=email],
.form-container input[type=url],
.form-container input[type=password],
.form-container input[type=datetime-local],
.form-container select,
.form-container textarea {
    border: 1px solid var(--nm-border);
    background: var(--nm-background);
    -webkit-box-shadow: inset 5px 5px 10px 0 rgba(0, 0, 0, .05);
    box-shadow: inset 5px 5px 10px 0 rgba(0, 0, 0, .05);
}

textarea {
    font-size: 1em;
    padding: 10px;
    width: 100%;
    height: 125px;
}

.btn {
    display: inline-block;
    background: var(--nm-primary-navy);
    color: #fff;
    text-align: center;
    padding: 10px 18px;
    text-decoration: none;
    font-family: var(--nm-font-body);
    font-size: 1em;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--nm-primary-navy);
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease;
}

.btnai {
    color: var(--nm-info);
    text-align: center;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1em;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.btn:hover,
.btn:focus-visible {
    background: var(--nm-surface);
    color: var(--nm-primary-navy);
    border-color: var(--nm-primary-navy);
    text-decoration: none;
    text-underline-offset: 3px;
}

.btn:active {
    background: var(--nm-secondary-blue);
    color: var(--nm-surface);
    border-color: var(--nm-secondary-blue);
}

.btn-right {
    margin-left: auto;
}

.btnai:hover,
.btnai:focus-visible {
    background: var(--nm-background);
    color: var(--nm-primary-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.k-grid td .btn {
    padding: 4px 10px;
}

.k-multiselect.k-input-md {
    font-size: 1em;
}

.k-multiselect.k-input-md .k-input-values {
    padding: 10px;
}

.k-multiselect.k-input-md .k-input-inner {
    padding: 1px;
}

.k-multiselect-select-all {
    padding: 4px 8px;
    cursor: pointer;
}

/* Layout styles */
.flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

header {
    background: var(--nm-surface);
    border-bottom: 1px solid var(--nm-secondary-blue);
}

#main-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 1.8rem;
}

header ul {
    display: none
}

.header-col-1 {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    gap: 16px;
    margin-right: 1.8rem;
    flex-shrink: 0;
}

.header-col-1 img {
    display: block;
    height: 48px;
    flex-shrink: 0;
}

.header-col-1 #logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.1;
    white-space: nowrap;
}

.header-col-1 #logo-text .logo-org {
    font-family: var(--nm-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nm-text-secondary);
}

.header-col-1 #logo-text .logo-product {
    font-family: var(--nm-font-heading);
    font-size: clamp(1.1rem, 0.85rem + 1vw, 1.6rem);
    font-weight: 700;
    color: var(--nm-primary-navy);
}

.header-col-2 {
    width: 100%;
    text-align: right;
    border-right: 1px solid var(--nm-border);
    padding-right: 1.8rem;
}

.header-col-3 {
    text-align: right;
    width: 600px;
    padding-left: 1.8rem
}

.header-col-3 input {
    padding: 20px;
    border: 1px solid var(--nm-border);
}

header .num-id, header .num-id-reviewer {
    margin-left: 8px;
    padding: 5px 10px;
    background: var(--nm-primary-navy);
    color: #fff;
    border-radius: 4px;
    font-size: .8em;
    font-weight: 700;
}


header .num-id-lgd, header .num-id-fir, header .num-id-icip-surveys, header .num-id-rec-requests, header .num-id-payroll-delegates {
    margin-left: 8px;
    padding: 5px 10px;
    background: var(--nm-primary-navy);
    color: #fff;
    border-radius: 4px;
    font-size: .8em;
    font-weight: 700;
}

header .num-id-lgd:empty, header .num-id-fir:empty, header .num-id-icip-surveys:empty, header .num-id-rec-requests:empty, header .num-id-payroll-delegates:empty {
    display: none;
}

.num-id-1, .num-id-rec-requests {
    padding: 5px 10px;
    background: var(--nm-primary-navy);
    color: #fff;
    border-radius: 4px;
    font-size: .8em;
    font-weight: 700;
    margin-left: 8px;
}

.platform-nav {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--nm-text-primary);
    font-size: 1em;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid var(--nm-border);
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.platform-nav i {
    margin-right: 10px;
    /* Space between icon and text */
    font-size: 20px;
    color: var(--nm-accent-gold);
}

.platform-nav:hover,
.platform-nav:focus-visible {
    background-color: var(--nm-primary-navy);
    color: var(--nm-surface);
    border-color: var(--nm-primary-navy);
}

.platform-nav:hover i,
.platform-nav:focus-visible i {
    color: var(--nm-accent-gold);
}

.disabled-link {
    pointer-events: none;
    /* Disable clicks */
    opacity: 0.5;
    /* Optional: makes the link look visually disabled */
}

#platform-navigation {
    border-top: 1px solid var(--nm-border);
    border-left: 1px solid var(--nm-border);
    background: var(--nm-background);
    display: none;
}

.nav-module-container {
    width: 100%;
    margin: 0 auto;
}

.nav-module-row {
    display: flex;
    flex-wrap: wrap;
}

.nav-module {
    flex: 1 0 25%;
    max-width: 25%;
    padding: 1.8rem;
    box-sizing: border-box;
    background-color: var(--nm-background);
    text-align: left;
    border-right: 1px solid var(--nm-border);
    border-bottom: 1px solid var(--nm-border);
}

.nav-module:hover,
.nav-module:focus-within {
    background: var(--nm-surface);
    border-bottom-color: var(--nm-primary-navy);
}

.nav-module a {
    display: inline-block;
    background: var(--nm-primary-navy);
    color: #fff;
    text-decoration: none;
    padding: 7px 15px;
    border: 1px solid var(--nm-primary-navy);
    border-radius: 4px;
}

.nav-module a:hover,
.nav-module a:focus-visible {
    background: var(--nm-surface);
    color: var(--nm-primary-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}


.empty-nav-module {
    border: 0;
}




header nav {
    width: 100%;
    background: var(--nm-primary-navy);
    padding: 10px 15px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    padding: 8px 16px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
    display: block;
    border-radius: 4px;
}

header nav ul li a:hover,
header nav ul li a:focus-visible {
    background: var(--nm-surface);
    color: var(--nm-primary-navy);
}

header nav ul li:last-child:not(.fcd) {
    border-left: 1px solid var(--nm-secondary-blue);
    padding-left: 15px;
}

header nav ul li:last-child:not(.fcd) a {
    background: var(--nm-accent-gold);
    color: var(--nm-text-primary);
    font-weight: 700;
}

header nav ul li:last-child:not(.fcd) a:hover,
header nav ul li:last-child:not(.fcd) a:focus-visible {
    background: var(--nm-text-primary);
    color: var(--nm-accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-title {
    background: var(--nm-primary-navy);
    background: linear-gradient(90deg, var(--nm-primary-navy) 0%, var(--nm-secondary-blue) 100%);
    padding: 1.8rem;
    color: #fff;
    font-family: var(--nm-font-heading);
    font-weight: 700;
    font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
}

.page-title span {
    font-family: var(--nm-font-heading);
}

/*Login Styles*/

.login-container {
    max-width: 500px;
    margin: 100px auto;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
}

.login-container header {
    background: #fff;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.login-container .header-col-1 {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem;
    border-right: 0 solid var(--nm-border);
    text-align: center;
    background: #fff;
    border-bottom: 1px solid var(--nm-border);
}

.login-container .header-col-1 img {
    width: 300px;
    height: auto;
}

/* Map */

#map-container {
    height: 650px;
    max-height: 80vh;
    width: 100%;
    border-bottom: 1px solid var(--nm-border);
    position: relative;
}

#map-options {
    display: flex;
    flex-flow: column;
    position: absolute;
    z-index: 999;
    top: 2vw;
    right: 2vw;
    width: 250px;
    padding: 1vw;
    background:#fff;
    font-size: 1rem;
    line-height: 1.5;
}

.main-content .project-popup {
    font-size: 0.9rem;
    line-height: 1.4em;
}

.main-content .project-popup h3 {
    margin: 0 0 10px 0;
    color: var(--nm-primary-navy);
    font-size: 1.2em;
}

.main-content .project-popup p {
    margin: 5px 0;
}

.main-content .project-popup a.btn {
    width: 100%;
    margin-top: 0.6rem;
    color: #fff;
}

/*Big Number Styles */
.dash-item {
    background: var(--nm-surface);
    font-family: var(--nm-font-heading);
    font-size: 1.8rem;
    color: var(--nm-primary-navy);
    border-right: 1px solid var(--nm-border);
    border-top: 1px solid var(--nm-border);
    border-bottom: 1px solid var(--nm-border);
}

.dash-item:last-child {
    border-right: 0;
}

.dash-item span {
    display: block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--nm-text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dash-item-14 {
    width: 15%;
    padding: 1.8rem;
}

.dash-item-16 {
    width: 16.66%;
    padding: 1.8rem;
}

.dash-item-20 {
    width: 20%;
    padding: 1.8rem;
}

.dash-item-25 {
    width: 25%;
    padding: 1.8rem;
}

.dash-item-33 {
    width: 33.333%;
    padding: 1.8rem;
}

.dash-item-50 {
    width: 50%;
    padding: 1.8rem;
}

.dash-item input {
    background: #fff !important;
    border: 0 !important;
    padding: 0 !important;
}

/*Filter Styles*/
.grid-filters {
    margin: 25px 0;
}

.filter-container {
    flex-flow: row wrap;
    background: var(--nm-background);
    padding: 5px;
}

.filter-container div {
    margin-right: 10px;
}

.filter-container div select {
    min-width: 200px;
    max-width: 300px;
}

.clear-filters {
    font-size: .8em;
    color: var(--nm-text-secondary);
    text-decoration: none;
    padding: 13px;
    border: 5px;
    display: inline-block;
    white-space: nowrap;
}

.clear-filters:hover {
    background: rgba(0, 0, 0, .05)
}

/*Main Content Styles*/
.main-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    background: #fff;
}

.main-item {
    flex: 1 1 500px;
    max-width: 100%;
    padding: 1.8rem;
    border-right: 1px solid var(--nm-border);
}

.main-item:last-child {
    border-right: 0;
}

.main-item-25 {
    flex: 1 1 25%;
}

.main-item-50 {
    flex: 1 1 500px;
}

.main-item-75 {
    flex: 1 1 75%;
}

.main-item-100 {
    width: 100%;
}

/*Breadcrumbs */
.breadcrumbs {
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--nm-border);
    margin-bottom: 1.8rem;
}

.breadcrumbs a {
    font-size: .8em;
    text-transform: uppercase;
    color: var(--nm-text-primary);
    text-decoration: none;
}

.profile-meta {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.profile-meta li {
    display: inline-block;
    margin-right: 10px;
    border-right: 1px solid var(--nm-border);
    padding-right: 10px;
}

.profile-meta li:last-child {
    border-right: 0;
}

/*Sub Navigation*/
.side-title {
    text-transform: uppercase;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid var(--nm-border);
}

.side-title span {
    display: inline-block;
    border-bottom: 3px solid var(--nm-accent-gold);
    padding-bottom: 5px;
}

.sub-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-navigation li {
    border-bottom: 1px solid var(--nm-border);
}

.sub-navigation li a {
    padding: 15px 0;
    display: block;
    text-decoration: none;
    color: var(--nm-secondary-blue);
}

.sub-navigation li a:hover {
    background: var(--nm-background);
}

/*Grid Styles */
.main-table {
    width: 100%;
    border-collapse: collapse;
}

.main-table th {
    text-align: left;
    font-family: var(--nm-font-heading);
    font-size: .85em;
    color: var(--nm-primary-navy);
    padding: 12px 10px;
    border-bottom: 2px solid var(--nm-primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.main-table tbody tr:hover {
    background: var(--nm-background);
}

.main-table.small td {
    padding: 10px 5px;
}

.main-table td {
    padding: 10px;
    border-bottom: 1px solid var(--nm-border);
}


.main-table-action-bar,
tfoot td {
    background: var(--nm-background);
    padding: 5px;
    margin: 15px 0;
}

.grid-currency,
th.grid-currency {
    text-align: right;
}

td.grid-currency {
    border-right: 1px solid var(--nm-border);
    border-left: 1px solid var(--nm-border);
}

.invalid {
    border: 2px solid var(--nm-error) !important;
}

.admin {
    display: none !important;
}

.complete {
    color: var(--nm-success)
}

.incomplete {
    color: var(--nm-error)
}

.main-table .priority {
    background: rgba(200, 155, 60, 0.22)
}

.main-table tr.priority:hover {
    background: var(--nm-accent-gold);
}

.main-table .priority:hover td,
.main-table .priority:hover td a {
    color: var(--nm-text-primary);
}

/* Tabs */

.tabs {
    list-style: none;
    margin: 0 0 1.8rem 0;
    padding: 0;
    border-bottom: 1px solid var(--nm-border);
}

.tabs li {
    display: inline-block;
}

.tabs li a {
    display: block;
    padding: 15px 0;
    margin-right: 15px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    border-bottom: 5px solid transparent;
    color: var(--nm-secondary-blue);
}

.tabs li a:hover,
.tabs li a:focus-visible {
    color: var(--nm-primary-navy);
    border-bottom-color: var(--nm-secondary-blue);
}

.tabs li a.active {
    border-bottom: 5px solid var(--nm-primary-navy);
    color: var(--nm-primary-navy);
    font-weight: 700;
}

.tab-content {
    display: none;
}

.tab-content-1 {
    display: block;
}


/*Project Profile*/
.project-profile-item {
    margin-right: 1.8rem;
}

.project-details-title {
    text-transform: uppercase;
    text-transform: uppercase;
    font-size: .8em;
}

.project-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-details-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--nm-border);
}

.project-details-list li:last-child {
    border-bottom: 0;
}

.project-grant-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-grant-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--nm-border);
}

.project-grant-list li:last-child {
    border-bottom: 0;
}

/*ICIP Styles */
.ai-btn-create {
    margin: 1em 0;
}

.btn-outline {
    border: 2px solid var(--nm-secondary-blue);
    padding: .5em 1em;
    border-radius: 5px;
    text-decoration: none;
    color: var(--nm-secondary-blue);
    background: #fff;
    display: inline-block;
}

.btn-outline:hover {
    color: #fff;
    background: var(--nm-secondary-blue);
}


.icip-section-container {
    display: flex;
    flex-wrap: wrap;
}

.icip-section {
    flex: 0 0 31.333333%;
    margin-right: 2%;
    box-sizing: border-box;
    text-align: center;
}

.icip-section:last-child {
    margin-right: 0;
}

.icip-section a {
    text-decoration: none;
    color: var(--nm-text-primary);
    padding: 60px 15px 15px 15px;
    font-size: 16px;
    display: block;
    height: 100%;
    border: 1px solid var(--nm-border);
    position: relative;
    border-radius: 5px;
}

.icip-section a:hover {
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
}

.icip-section a::before {
    display: block;
    position: absolute;
    top: 15px;
    left: 50%;
    margin-left: -15px;
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% auto;
    border-radius: 50px;
    -moz-border-radius: 50px;
}

.icip-section a.approve::before {
    background-image: url(../images/icon-approve.png);
    background-color: var(--nm-secondary-blue);
}

.icip-section a.pending::before {
    background-image: url(../images/icon-pendng.png);
    background-color: rgba(246, 171, 27, 1);
}

.icip-section a.deny::before {
    background-image: url(../images/icon-deny.png);
}


.survey-section {display:none;}
#suvey-section-1 {display:block;}

.survey-question-container {padding: 1rem; position: relative; border: 1px solid rgba(213, 220, 229, 0.5); border-radius: 5px; overflow:hidden; -webkit-box-shadow: 0 0 50px 0 rgba(0,0,0,.05); box-shadow: 0 0 50px 0 rgba(0,0,0,.05); margin-bottom: 15px;}
.survey-question-container legend {position:absolute; top: 0; left: 0; padding: .5rem 1rem; background:var(--nm-primary-navy); color:#fff; font-size: .8em;}
.survey-question-container.has-followup-history {border-left: 5px solid var(--nm-accent-gold); background-color: rgba(200, 155, 60, 0.10);}
.survey-question-container.has-followup-history .survey-question-call-out {background-color: rgba(200, 155, 60, 0.12); border: 1px solid var(--nm-accent-gold); border-radius: 5px; color: var(--nm-error); font-weight: 500;}
.survey-review-block {margin-bottom: 15px; padding: 10px; background: var(--nm-background); border-radius: 5px; border: 1px solid var(--nm-border);}
.reviewer-notes-list {display: flex; flex-direction: column; gap: 10px;}
.reviewer-note-item {padding: 10px; background: #fff; border: 1px solid var(--nm-border); border-radius: 4px;}
.reviewer-note-item .review-decision.status-rejected {color: var(--nm-error); font-weight: bold;}
.reviewer-note-item .review-decision.status-approved {color: var(--nm-success); font-weight: bold;}
.dependent-question-container {position: relative; padding-left: calc(var(--dependency-depth, 0) * 24px);}
.dependent-question-container.dependency-group-root {border: 1px solid rgba(213, 220, 229, 0.5); border-radius: 5px; overflow: hidden; -webkit-box-shadow: 0 0 50px 0 rgba(0,0,0,.05); box-shadow: 0 0 50px 0 rgba(0,0,0,.05); margin-bottom: 15px;}
.dependent-question-container.dependency-group-root .survey-question-container {border: 0; border-radius: 0; box-shadow: none; margin-bottom: 0;}
.dependent-question-container.dependency-group-root .survey-question-container {border-top: 1px solid var(--nm-border);}
.dependent-question-container.dependency-group-root > .survey-question-container {border-top: 0;}
.survey-question-call-out {border: 5px solid var(--nm-accent-gold); padding: 1rem; margin-bottom: 20px;}

.form-logic {border: 1px solid var(--nm-border); background:var(--nm-background); padding: 1rem; font-size: .8em; font-style: italic;}
.form-logic::before {content:"Form Logic:"; display:inline-block; padding-right: 7px;}

.questionnaire-lnks li a {position:relative; padding-left: 1.8rem;}
.questionnaire-lnks li a::before {display:block; position:absolute; top: 15px; left: 0; margin-left:0px; content:''; width: 20px; height: 20px; background-repeat: no-repeat; background-position: center center; background-size: 50% auto; border-radius: 50px; -moz-border-radius: 50px;}
.questionnaire-lnks li a.complete::before {background-image:url(../images/icon-approve.png); background-color: var(--nm-secondary-blue);}
.questionnaire-lnks li a.pending::before {background-image:url(../images/icon-pendng.png); background-color: rgba(246,171,27,1);}



/*Modal Styles */

.btnai.smallai,
body .input-container .btn.small {
    padding: 7px 15px;
    border: 2px solid var(--nm-primary-navy);
    font-family: var(--nm-font-body);
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.4em;
}

.btnai.smallai:hover,
body .btn.small:hover,
.btnai.smallai:focus,
body .btn.small:focus {
    border: 2px solid var(--nm-accent-gold);
}

.btnai.smallai .tally {
    margin: -4px 0 -4px 2px;
    padding: 0.1rem 0.3rem;
    border-top: 1px solid var(--nm-border);
    border-left: 1px solid var(--nm-border);
    border-radius: 3px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2) inset;
    background: linear-gradient(135deg, var(--nm-border), #fff);
    font-size: 0.8rem;
}

.btnai.ai-generator {
    align-self: flex-start;
    gap: 0.3rem;
    width: auto;
    padding: 3px 15px 3px 7px;
}

.btnai.ai-generator img {
    width: 1.6rem;
}

.modal {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 200;
}

.modal-content {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}

.modal-unpaid {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 200;
}

.modal-content-unpaid {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}

.modal-correction {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 200;
}

.modal-content-correction {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}

.reversion-modal {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 200;
}

.reversion-modal-content {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}

.reversion-correction-modal {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 200;
}

.reversion-correction-modal-content {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}
.bill-modal {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 200;
}

.bill-modal-content {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}


.correction-modal {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 200;
}

.correction-modal-content {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}

.modal-entity {
    background: rgba(29, 39, 51, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.modal-content-entity {
    background: #fff;
    width: 1000px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1000px;
    padding: 1.8rem;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    overflow: auto;
}

.onboarding-content {
    display: none;
}

.admin {
    display: none !important;
}

/* Sorry for lazy tab classes. */
.tab-header {
    display: flex;
}

.tab-tab {
    flex: 1 0 0;
    padding: 10px;
    background-color: var(--nm-border);
    border: 1px solid #ffffff;
    text-align: center;
    cursor: pointer;
}

.tab-active {
    background-color: #ffffff;
    border-color: var(--nm-border);
}

/* Marking form items not relevant to the current configuration, because just using 'display: none' can be ambiguous in tabbed/modal/etc. contexts. */
.inapplicable {
    display: none;
}

.signer-info-container {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.signer-info {
    padding: 5px 0;
    color: var(--nm-text-secondary);
}

.signer-info.error {
    color: var(--nm-error);
    font-weight: bold;
}

.container > .tabs {
    display: flex;
    justify-content: flex-start;
    background-color: var(--nm-background);
    padding: 0;
    border-bottom: 1px solid var(--nm-border);
    margin: 0;
}

.container > .tabs a {
    padding: 15px 1.8rem;
    text-decoration: none;
    color: var(--nm-text-primary);
    display: block;
    border-bottom: 3px solid transparent;
}

.container > .tabs a:hover,
.container > .tabs a:focus-visible {
    background-color: var(--nm-surface);
    border-bottom: 3px solid var(--nm-secondary-blue);
}

.container > .tabs a.active {
    background-color: var(--nm-surface);
    border-bottom: 3px solid var(--nm-primary-navy);
    font-weight: 700;
}



/* Add these styles for the phase tabs */
.phase-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--nm-border);
}

.phase-tabs a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--nm-text-primary);
    border-bottom: 3px solid transparent;
    margin-right: 10px;
}

.phase-tabs a:hover,
.phase-tabs a:focus-visible {
    border-bottom: 3px solid var(--nm-secondary-blue);
}

.phase-tabs a.active {
    border-bottom: 3px solid var(--nm-primary-navy);
    font-weight: bold;
}

.phase-details {
    background-color: var(--nm-background);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--nm-border);
    border-radius: 5px;
}

.checkboxes-container div {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.checkbox input {
    margin-right: 5px;
}

/* ICIP Funding Navigation: make long checkbox lists less tall */
#funding-activity-categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 18px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    max-height: 260px;
    overflow-y: auto;
    padding: 10px 12px;
    border: 1px solid var(--nm-border);
    border-radius: 4px;
    background: var(--nm-background);
}

#funding-activity-categories .checkbox {
    margin-right: 0;
}

/* ICIP Funding Navigation: stack eligibility blocks full width */
#icip-funding-navigation .funding-stack-row .width-50,
#icip-funding-navigation .funding-stack-row .funding-full-width {
    float: none;
    width: 100%;
    margin-right: 0;
}

/* ICIP Funding Navigation: general full-width utility */
#icip-funding-navigation .funding-full-width {
    float: none;
    width: 100%;
    margin-right: 0;
}

/* ICIP Funding Navigation: counties list in columns */
#restricted-counties {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 18px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    max-height: 260px;
    overflow-y: auto;
    padding: 10px 12px;
    border: 1px solid var(--nm-border);
    border-radius: 4px;
    background: var(--nm-background);
}

#restricted-counties .checkbox {
    margin-right: 0;
}

@media (max-width: 1100px) {
    #funding-activity-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #restricted-counties {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    #funding-activity-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #restricted-counties {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    #funding-activity-categories {
        grid-template-columns: 1fr;
    }

    #restricted-counties {
        grid-template-columns: 1fr;
    }
}

.budget-table .btn {
    padding: 5px 10px;
    font-size: 16px;
}

/* Update these styles for the stacked phases */
.phase-section {
    margin-bottom: 1.8rem;
    border: 2px solid var(--nm-text-secondary);
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
}

.phase-header {
    padding: 15px 20px;
    background-color: var(--nm-background);
    border-bottom: 1px solid var(--nm-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phase-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--nm-text-primary);
}

.phase-actions {
    display: flex;
    align-items: center;
    min-height: 36px; /* Fixed height to prevent layout shifts */
}

.phase-details {
    margin-bottom: 0;
    border-top: none !important;
    border-radius: 0 !important;
    padding: 20px;
    background-color: #fff;
}

.budget-items {
    margin-top: 0;
    border-top: none;
    padding: 0 20px 20px 20px;
}

.add-phase {
    margin-bottom: 20px;
    display: inline-block;
}

.remove-phase {
    padding: 5px 10px !important;
    font-size: 14px !important;
}

/* Clean up table styling */
.budget-table {
    margin-top: 15px;
}

.budget-table th {
    background-color: var(--nm-background);
}

.budget-table .btn {
    padding: 5px 10px;
    font-size: 14px;
}

/* Fix forms inside phases */
.phase-section .form-item {
    margin-bottom: 15px;
}

.phase-section .form-item:last-child {
    margin-bottom: 0;
}

/* Simplify checkboxes container */
.checkboxes-container div {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}

.checkbox {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.checkbox input {
    margin-right: 5px;
}

/* ICIP Project details specific tab styling - this won't affect other pages */
#icip-project-details > .tabs {
    display: flex;
    justify-content: flex-start;
    background-color: var(--nm-background);
    padding: 0;
    border-bottom: 1px solid var(--nm-border);
    margin: 0;
}

#icip-project-details > .tabs a {
    padding: 15px 1.8rem;
    text-decoration: none;
    color: var(--nm-text-primary);
    display: block;
    border-bottom: 3px solid transparent;
}

#icip-project-details > .tabs a:hover,
#icip-project-details > .tabs a:focus-visible {
    background-color: var(--nm-surface);
    border-bottom: 3px solid var(--nm-secondary-blue);
}

#icip-project-details > .tabs a.active {
    background-color: var(--nm-surface);
    border-bottom: 3px solid var(--nm-primary-navy);
    font-weight: 700;
}

#icip-project-details .main-item-100 .tabs {
    display: flex;
    flex-direction: column;
    width: 200px;
    float: left;
    border-bottom: none;
    border-right: 1px solid var(--nm-border);
    padding: 0;
    margin: 0;
    margin-right: 20px;
}

#icip-project-details .main-item-100 .tabs li {
    display: block;
    width: 100%;
}

#icip-project-details .main-item-100 .tabs li a {
    display: block;
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid var(--nm-border);
    border-left: 5px solid transparent;
}

#icip-project-details .main-item-100 .tabs li a:hover,
#icip-project-details .main-item-100 .tabs li a:focus-visible {
    border-left-color: var(--nm-secondary-blue);
    background-color: var(--nm-background);
}

#icip-project-details .main-item-100 .tabs li a.active {
    border-bottom: 1px solid var(--nm-border);
    border-left: 5px solid var(--nm-primary-navy);
    background-color: var(--nm-background);
    font-weight: 700;
}

#icip-project-details .main-item-100 > .tab-content {
    margin-left: 220px;
    padding: 15px 15px 15px 0;
}

/* Add these styles for the request info panel */
#request-details {
    margin-bottom: 20px;
}

.read-only-field {
    padding: 8px;
    background-color: var(--nm-background);
    border-radius: 4px;
    border: 1px solid var(--nm-border);
    min-height: 20px;
    margin-top: 5px;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Match the style from the other page */
.side-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--nm-text-primary);
    position: relative;
}

#request-diff .changed {
    background-color: rgba(200, 155, 60, 0.3);
}

a.clicked {
  color: var(--nm-secondary-blue) !important;
}

.notes-container {
    border: 1px solid var(--nm-warning);
    background-color: rgba(200, 155, 60, 0.10);
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    display: none;
}


input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 8px 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.notes-container {
    border: 1px solid var(--nm-warning);
    background-color: rgba(200, 155, 60, 0.10);
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    display: none;
}


.tab-header-new {
    display: flex;
    justify-content: space-between; /* puts them on opposite corners */
    align-items: center; /* vertically centers */
    margin-bottom: 15px; /* some spacing before filters */
}

.tab-header-new h2 {
    margin: 0;
    font-size: 1.5em;
}

.sbd-report-title {
    text-align: center;
    width: 100%;
}

.sbd-report-desc {
    text-align: center;
    width: 100%;
}

.sbd-chart-container {
    background-color: var(--nm-background);
    border-radius: 20px;
    height: 500px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sbd-chart-container-tall {
    background-color: var(--nm-background);
    border-radius: 20px;
    height: 920px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sbd-chart-title {
    height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--nm-text-primary);
}

.sbd-chart-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--nm-text-primary);
    margin-bottom: 15px;
}

.sbd-chart-footer {
    margin-top: 10px;
    font-size: 10px;
}
.clear-btn {
    border: none;
    background: transparent;
    color: var(--nm-text-secondary);
    font-size: 18px;
    cursor: pointer;
    margin-left: 4px;
}
.clear-btn:hover {
    color: #000;
}
.receipt-tab {
    transition: background-color 0.2s, border-color 0.2s;
}

.receipt-tab:hover {
    background-color: var(--nm-border) !important;
}

.receipt-tab.tab-active {
    border-bottom: 2px solid #fff !important;
    font-weight: bold;
    margin-bottom: -2px;
}

/* Force custom styling for disabled checkboxes/radios */
.custom-disabled:disabled {
    opacity: 1 !important;            /* keep visible */
    accent-color: var(--nm-secondary-blue) !important; /* your custom blue */
    cursor: not-allowed !important;   /* show it’s disabled */
    filter: brightness(1.1);          /* optional: slightly brighter */
}
.k-grid .k-sortable-dragging {
    cursor: move !important;
}

.k-grid-header-wrap {
    overflow: hidden;
}

.k-grid tbody tr.k-state-hover {
    background-color: var(--nm-background) !important;
    border: 2px dashed var(--nm-secondary-blue);
}
.tab-active {
    background: var(--nm-secondary-blue) !important;
    color: white !important;
    font-weight: bold;
}

.media-tab:hover {
    background: var(--nm-border) !important;
}
.bookmark-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.bookmark-icon:hover {
    transform: scale(1.3);
    color: var(--nm-accent-gold) !important;
    filter: drop-shadow(0 2px 4px rgba(200, 155, 60, 0.5));
    text-shadow: 0 0 8px rgba(200, 155, 60, 0.8);
}
.renewal-countdown-container {
        background: var(--nm-background);
        border: 1px solid var(--nm-border);
        border-radius: 8px;
        padding: 15px;
        margin: 15px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .renewal-countdown-container h3 {
        margin: 0 0 12px 0;
        font-size: 16px;
        color: var(--nm-text-primary);
        font-weight: 600;
}

    .countdown-content {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
}

    .days-remaining {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 80px;
}

    .days-number {
        font-size: 32px;
        font-weight: bold;
        line-height: 1;
}

    .days-label {
        font-size: 11px;
        color: var(--nm-text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 4px;
}

    .progress-wrapper {
        flex: 1;
        min-width: 200px;
}

    .progress-bar-container {
        background: var(--nm-border);
        border-radius: 20px;
        height: 20px;
        overflow: hidden;
        margin-bottom: 6px;
}

    .progress-bar-fill {
        height: 100%;
        border-radius: 20px;
        transition: width 0.5s ease, background-color 0.5s ease;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 8px;
        color: white;
        font-weight: 600;
        font-size: 11px;
}

    .progress-dates {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        color: var(--nm-text-secondary);
}

    .renewal-info {
        display: flex;
        gap: 20px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--nm-border);
        font-size: 12px;
        flex-wrap: wrap;
}

    .renewal-info-item {
        display: flex;
        flex-direction: column;
}

    .renewal-info-label {
        color: var(--nm-text-secondary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
}

    .renewal-info-value {
        color: var(--nm-text-primary);
        font-weight: 600;
}

    .loading-text {
        color: var(--nm-text-secondary);
        font-style: italic;
        padding: 10px 0;
}

    .error-text {
        color: var(--nm-error);
        padding: 10px 0;
}
.toggle-password :hover {

 transform: scale(1.05);
    
}
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* space for icon */
    height: 40px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

#toggle-text {
    display: none;
}
.user-metrics .dash-item{
cursor: pointer;
transition: border 0.2s ease;
}