.back-to-user-profile {
    width: 140px;
    height: 48px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    font-size: 12px !important;
    background-color: #5009b5;
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 650;
    color: #ffffff;
    text-align: center;
    line-height: normal;
}
 .back-to-user-profile:active {
    background-color: #400791;
    box-sizing: border-box;
}
 .back-to-user-profile:disabled {
    background-color: #bbafe9;
    box-sizing: border-box;
}
 .back-to-user-profile:focus {
    background-color: #733ac4;
    box-sizing: border-box;
}
/* Custom style for disabled MudPagination first/previous buttons to match rectangle */
.custom-pagination .mud-pagination-item.mud-disabled,
.custom-pagination .mud-pagination-item.mud-disabled .mud-button,
.custom-pagination .mud-pagination-item.mud-disabled .mud-icon-button {
    width: 21px !important;
    height: 26px !important;
    padding: 2px 2px 2px 2px !important;
    border-radius: 5px !important;
    border: 1px solid #bbafe9 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
    color: #bbafe9 !important;
    opacity: 1 !important;
    pointer-events: none !important;
}
/* Ensure pagination ripple effect matches rectangle styling */
.custom-pagination .mud-button .mud-ripple {
    border-radius: 8px !important;
    min-width: 21px !important;
    height: 26px !important;
    background-color: rgba(138, 79, 255, 0.08) !important;
    opacity: 1 !important;
    box-shadow: none !important;
}
/* Force hide MudBlazor snackbar default icon */
.mud-snackbar .mud-snackbar-icon,
.mud-snackbar .mud-snackbar-content-action {
    display: none !important;
}
/* Custom MudBlazor Snackbar Styling */
.mud-snackbar {
    background-color: #f2f9ed !important;
    color: #231e33 !important;
    padding: 12px 20px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
    top: 110px !important;
    min-width: 420px !important;
    max-width: 600px !important;
}

/* Error Snackbar Styling */

.mud-snackbar.mud-snackbar-error {
    background-color: #fdf4f4 !important; /* light red background */
    color: #333 !important;
    border: 2px solid #a30000 !important; /* dark red border */
    border-radius: 10px !important;
    padding: 15px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    min-width: 420px !important;
    max-width: 600px !important;
}

/* Elevance Sans Font Family Setup */
body { 
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
    font-weight: 400;
}

/* Medium weight for headings and important text */
h1, h2, h3, h4, h5, h6,
.mud-typography-h1,
.mud-typography-h2,
.mud-typography-h3,
.mud-typography-h4,
.mud-typography-h5,
.mud-typography-h6,
.navbar-brand,
.font-medium {
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
}

/* Regular weight for body text */
p, span, div, label, input, textarea, select,
.mud-typography-body1,
.mud-typography-body2,
.mud-typography-subtitle1,
.mud-typography-subtitle2,
.mud-typography-caption,
.mud-button,
.mud-input,
.mud-field,
.font-regular {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
    font-weight: 400;
}

.mud-button-label,
.font-semibold {
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 400;
}

/* Override MudBlazor default typography */
.mud-typography {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
}

/* MudInputLabel styling */
.mud-input-label {
    font-size: 14px !important;
    color: #333333 !important;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    font-weight: 400 !important;
}

/* MudCheckBox label styling */
.mud-checkbox-label,
.mud-checkbox .mud-typography {
    font-size: 14px !important;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    font-weight: 400 !important;
}

/* Specific overrides for MudBlazor components */
.mud-button-text,
.mud-button-outlined,
.mud-button-filled {
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
}

.mud-input-text,
.mud-input-label,
.mud-field-label {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
    font-weight: 400;
}

.navbar-brand { 
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 600; 
}

/* Common Button Base Class */
.btn-base {
    width: 150px;
    height: 48px;
    padding: 2px;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 650;
    text-align: center;
    line-height: normal;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease;    
    text-transform: none !important;
}

/* Primary Button (Continue, Submit, etc.) */
.btn-primary {
    background-color: #5009b5 !important;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #733ac4 !important;
}

.btn-primary:active {
    background-color: #400791 !important;
}

.btn-primary:disabled {
    background-color: #bbafe9 !important;
    cursor: not-allowed;
}

.btn-primary:focus {
    background-color: #733ac4;
    outline: 2px solid #5009b5;
    outline-offset: 2px;
}

/* Secondary Button (Cancel, Back, etc.) */
.btn-secondary {
    background-color: transparent;
    color: #666666 !important;
    border: 2px solid #794cff;
    border-color: #cccccc !important;
}

.btn-secondary:hover {
    background-color: #f8f6ff;
    border-color: #733ac4;
    color: #733ac4;
}

.btn-secondary:active {
    background-color: #e9e4ff;
    border-color: #400791;
    color: #400791;
}

.btn-secondary:disabled {
    background-color: transparent;
    border-color: #bbafe9;
    color: #bbafe9;
    cursor: not-allowed;
}

.btn-secondary:focus {
    border-color: #733ac4;
    color: #733ac4;    
    outline-offset: 2px;
}

/* Tertiary Button (Text only, minimal styling) */
.btn-tertiary {
    background-color: transparent;
    color: #794cff;
    border: none;
    text-decoration: underline;
}

.btn-tertiary:hover {
    color: #733ac4;
    background-color: #f8f6ff;
}

.btn-tertiary:active {
    color: #400791;
    background-color: #e9e4ff;
}

.btn-tertiary:disabled {
    color: #bbafe9;
    cursor: not-allowed;
}

.btn-tertiary:focus {
    color: #733ac4;
    outline: 2px solid #794cff;
    outline-offset: 2px;
}

/* Danger Button (Delete, Remove, etc.) */
.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c82333;
}

.btn-danger:active {
    background-color: #bd2130;
}

.btn-danger:disabled {
    background-color: #f5c6cb;
    cursor: not-allowed;
}

.btn-danger:focus {
    background-color: #c82333;
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

/* Button Size Variants */
.btn-small {
    width: 100px;
    height: 36px;
    font-size: 14px;
}

.btn-large {
    width: 200px;
    height: 56px;
    font-size: 18px;
}

.btn-full-width {
    width: 100%;
}

/*Provider Management*/
.add-provider-identifier {
    width: 146px;
    height: 48px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    background-color: #5009b5;
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 650;
    color: #ffffff;
    text-align: center;
    line-height: normal;
    text-transform: none;
    font-size: 12px;
}

.add-provider-identifier:hover {
    background-color: #733ac4;
    box-sizing: border-box;
}

.add-provider-identifier:active {
    background-color: #400791;
    box-sizing: border-box;
}

.add-provider-identifier:disabled {
    background-color: #bbafe9;
    box-sizing: border-box;
}

.add-provider-identifier:focus {
    background-color: #733ac4;
    box-sizing: border-box;
}

.adjustment {
    margin-left: auto;
    margin-top: -25px;
}

.expansion-panel {    
    padding: 2px 2px 2px 2px;
    border-radius: 9px;
    background-color: #f2f2f2;
    box-sizing: border-box;
}

.mud-expand-panel {
    background-color: #f2f2f2;
}

.mud-expand-panel-text {
    color: #733ac4;
    font-size: 16px;
    font-weight: 500;
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
}

.filter-provider-lbl {    
    color: #733ac4 !important;
    font-size: 16px !important;
    text-transform: uppercase;
}

/* .mud-tooltip{
  width: 14px;
  height: 14px;
  padding: 2px 2px 2px 2px;
  background-color: #733ac4;
  box-sizing: border-box;
} */

.filter-btns {
    width: 140px;
    height: 48px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    border: 1px solid #733ac4;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 650;
    color: #733ac4;
    text-align: center;
    line-height: normal;
    text-transform: none;
}

.filter-btns:hover {
    background-color: #ffffff;
    box-sizing: border-box;
}

    .filter-btns:active {
        background-color: #ffffff;
        box-sizing: border-box;
    }

.filter-btns:disabled {
    background-color: #bbafe9;
    box-sizing: border-box;
}

    .filter-btns:focus {
        background-color: #ffffff;
        box-sizing: border-box;
    }

.btn-adjustment {
    padding-left: 65px !important;
    gap: 10px;
}

.mud-select-healthplan {
    width: 310px;    
}

.provider-attach-act {
    font-weight: 500 !important;
    color: #733ac4;
}

.health-plan-det-text {
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #4a4a4a !important;
    font-size: 14px !important;
}

/* Fix helper text contrast - only target divs without ID (not error messages) */
.mud-input-helper-text,
.mud-input-helper-text .me-auto:not([id]),
.mud-input-control-helper-container .me-auto:not([id]) {
    color: #4a4a4a !important;
}

/* Error messages with IDs should be red - increased specificity */
.mud-input-control-helper-container .mud-input-helper-text .me-auto[id],
.mud-input-control-helper-container .me-auto[id],
div.me-auto[id],
.mud-error-text {
    color: #a30000 !important; /* WCAG AA compliant - 7.12:1 contrast on #f2f2f2 */
}


/* Hide decorative validation icons from screen readers - ARIA prohibited attribute fix */
/* Note: CSS cannot add aria-hidden attribute. JavaScript injection in OnAfterRenderAsync
   dynamically adds aria-hidden="true" and removes aria-label from these icons.
   The icons are purely decorative (validation state is conveyed via error messages).
   MudBlazor's AdornmentIcon doesn't support aria-hidden parameter. */
.mud-input-adornment .mud-icon-root.fas.fa-check,
.mud-input-adornment .mud-icon-root.mud-success-text {
    /* Prevent user interaction with decorative icons */
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* MudTable Styling */
/* Column Headers */
.mud-table-head .mud-table-cell,
.mud-table th,
.mud-table-head th {
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif !important;
    font-weight: 650 !important;
    color: #733ac4 !important;
}

/* Row Values */
.mud-table-body .mud-table-cell,
.mud-table td,
.mud-table-body td {
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif !important;
    font-weight: 500 !important;
}

/* Pagination */
.mud-table-pagination,
.mud-table-pagination .mud-typography,
.mud-table-pagination .mud-button,
.mud-table-pagination .mud-icon-button,
.mud-pagination .mud-typography,
.mud-pagination .mud-button,
.mud-pagination .mud-icon-button {
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif !important;
    font-weight: 650 !important;
    color: #733ac4 !important;
}

/* Unify all pagination items (page numbers, first, last, prev, next) to rectangle style */
.custom-pagination .mud-button,
.custom-pagination .mud-icon-button,
.custom-pagination .mud-button .mud-icon-button,
.custom-pagination .mud-pagination-item-first .mud-button,
.custom-pagination .mud-pagination-item-last .mud-button,
.custom-pagination .mud-pagination-item-previous .mud-button,
.custom-pagination .mud-pagination-item-next .mud-button {
    border: 2px solid #8a4fff !important;
    color: #8a4fff !important;
    font-weight: bold !important;
    border-radius: 8px !important;
    min-width: 21px !important;
    height: 26px !important;
    background-color: transparent !important;
}

    .custom-pagination .mud-button.mud-selected {
        background-color: #794cff !important;
        color: #fff;
    }

    .custom-pagination .mud-button:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .custom-pagination .mud-button:hover:not(.mud-selected):not(:disabled) {
        background-color: rgba(138, 79, 255, 0.1);
    }

    mud-icon-button
/* Custom Tooltip Styles - Fixed Width, Dynamic Height */
.custom-tooltip-container,
div.custom-tooltip-container,
.mud-tooltip .custom-tooltip-container,
.mud-popover .custom-tooltip-container {
    width: 218px !important;
    min-width: 218px !important;
    max-width: 218px !important;
    min-height: 90px !important;
    height: auto !important;
    max-height: none !important;
    padding: 8px !important;
    border-radius: 8px !important;
    border: 1px solid #733ac4 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    display: block !important;
    position: relative !important;
    overflow: visible !important;
    white-space: normal !important;
}

.custom-tooltip-header,
div.custom-tooltip-header,
.mud-tooltip .custom-tooltip-header {
    width: 100% !important;
    height: auto !important;
    min-height: 25px !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
    font-family: 'ElevanceSans-Semibold', 'Elevance Sans Semibold', 'Elevance Sans', sans-serif !important;
    font-weight: 650 !important;
    color: #333333 !important;
    text-align: left !important;
    line-height: 17px !important;
    padding: 4px 6px 2px 6px !important;
    margin: 0 !important;
    display: block !important;
}

.custom-tooltip-header-text,
.mud-typography.custom-tooltip-header-text {
    font-size: 13px !important;
    font-family: 'ElevanceSans-Semibold', 'Elevance Sans Semibold', 'Elevance Sans', sans-serif !important;
    font-weight: 650 !important;
    color: #333333 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 17px !important;
    display: inline !important;
}

.custom-tooltip-content,
div.custom-tooltip-content {
    width: 100% !important;
    height: auto !important;
    min-height: 40px !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
    font-family: 'ElevanceSans-Regular', 'Elevance Sans Regular', 'Elevance Sans', sans-serif !important;
    color: #323232 !important;
    text-align: left !important;
    line-height: 15px !important;
    font-size: 13px !important;
    padding: 2px 6px 4px 6px !important;
    margin: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    display: block !important;
}

/* MudTooltip override to remove default styling and constraints */
.custom-tooltip-override,
.mud-tooltip.custom-tooltip-override,
.mud-popover.custom-tooltip-override {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    background-color: transparent !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
}

/* Override MudBlazor tooltip content wrapper constraints */
.mud-tooltip.custom-tooltip-override .mud-tooltip-content,
.mud-popover.custom-tooltip-override .mud-popover-content,
.custom-tooltip-override .mud-tooltip-content,
.custom-tooltip-override .mud-popover-content {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    background-color: transparent !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* Force tooltip content to be flexible */
.mud-tooltip-content,
.mud-popover-content {
    max-width: none !important;
    width: auto !important;
    height: auto !important;
}

.mud-tooltip-content .custom-tooltip-container,
.mud-popover-content .custom-tooltip-container {
    width: 218px !important;
    min-width: 218px !important;
    max-width: 218px !important;
    height: auto !important;
    max-height: none !important;
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    color: #666666; /* Changed from #bbb to #666666 for better contrast */
    font-weight: 600;
    margin-right: 8px;
}

.compact-dropdown {
    min-width: 54px !important;
    width: 60px !important;
    max-width: 70px !important;
    border: 1px solid #000 !important;
    border-radius: 4px;
    background-color: #fff;
    font-size: 15px !important;
}
.compact-dropdown .mud-popover, .compact-dropdown .mud-list {
    min-width: 54px !important;
    width: 60px !important;
    max-width: 70px !important;
}
.compact-dropdown .mud-list-item, .compact-dropdown .mud-select-item {
    min-width: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 15px !important;
}
.compact-dropdown .mud-input-select {
    height: 30px !important;
    min-width: 0 !important;
}
.compact-dropdown .mud-input-slot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px !important;
    min-width: 0 !important;
    font-size: 15px !important;
    letter-spacing: normal !important;
    overflow: visible !important;
}

.tiny-drcompact-dropdownopdown .mud-input-control {
    min-height: 32px !important; /* Keep enough height for text & arrow */
    line-height: 32px !important; /* Align text vertically */
}


.rectangle {
    width: 240px !important;
    height: 483px !important;
    padding: 2px 2px 2px 2px!important;
    border-radius: 8px !important;
    border: 1px solid #733ac4 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
}

.passwords {
    width: 210px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif !important;
    font-weight: 650 !important;
    color: #333333 !important; /* Changed from #333333 to #333333 for better contrast */
    text-align: left;
    line-height: 17px;
}

.must-be-8-15-charact {
    width: 200px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}


.cannot-be-the-same-a {
    width: 210px;
    height: 33px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box !important;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}

.cannot-contain-space {
    width: 210px;
    height: 33px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box !important;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}

.cannot-be-the-same-a {
    width: 210px;
    height: 33px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}

.cannot-contain-conse {
    width: 200px;
    height: 33px;
    background-color: rgba(255, 255, 255, 0) ;
    box-sizing: border-box !important;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}

.cannot-be-person-s-n {
    width: 210px;
    height: 33px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box !important;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}

.cannot-reuse-old-pas {
    width: 210px;
    height: 33px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box !important;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}

.tip {
    width: 210px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif !important;
    font-weight: 650 !important;
    color: #333333 !important; /* Changed from #333333 to #333333 for better contrast */
    text-align: left;
    line-height: 17px;
    padding-top: 9px;
}

.for-a-more-secure-pa {
    width: 210px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif !important;
    color: #444444 !important; /* Changed from #323232 to #444444 for better contrast */
    text-align: left;
    line-height: 13px;
}

.ellipse {
    list-style-type: disc; /* Changed from circle to disc */
    padding-left:15px!important;
}
    /*Continue Button: class="btn-base btn-primary"
   Cancel Button: class="btn-base btn-secondary"
   Small Cancel: class="btn-base btn-secondary btn-small"
   Delete Button: class="btn-base btn-danger"
   Link Button: class="btn-base btn-tertiary"
   
   Custom Tooltip: 
   - Container: class="custom-tooltip-container"
   - Header: class="custom-tooltip-header"
   - Header Text: class="custom-tooltip-header-text"
   - Content: class="custom-tooltip-content"
   - MudTooltip: class="custom-tooltip-override"
*/

/* Password Guidelines Styles */
.password-guideline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 5px;
}

.password-guideline-bullet {
    color: #333333; /* Improved contrast for better accessibility */
    font-size: 14px;
    margin-top: -2px;
}

.password-guideline-text {
    font-family: 'ElevanceSans-Regular', 'Elevance Sans', sans-serif;
    color: #333333 !important; /* Improved contrast for better accessibility */
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: normal;
}

/* Accessibility fixes for specific color contrast issues */
/* Fix for insufficient contrast in user role display */
.user-role-display span {
    color: #333333 !important; /* Improved from #969696 */
}

/* Fix for provider role text contrast */
.provider-role-text {
    color: #333333 !important; /* Improved from #8453ca */
}

/* Fix for "Total Records" text contrast */
.mud-typography-body2 {
    color: #333333 !important; /* Improved from #8b8b8b */
}

/* Fix for optional label contrast */
.mud-input-label-animated.mud-input-label-text {
    color: #333333 !important; /* Improved from #afa9a9 */
}

/* Health plan styles for saved vs unsaved */
.saved-health-plan {
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.unsaved-health-plan {
    cursor: pointer !important;
    opacity: 1 !important;
}

.saved-health-plan-text {
    color: #666 !important;
}