/* Custom Bootstrap 5 styles for Registration Razor Pages */

:root {
    --primary-color: #5009b5;
    --secondary-color: #bbafe9;
    --success-color: #2e7d32;
    --error-color: #c62828;
    --text-dark: #231e33;
    --text-muted: #616161;
    --border-color: #d0d0d0;
    --bg-light: #f3f3f3;
}

body {
    font-family: 'ElevanceSans-Regular', 'Elevance Sans', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Left Sidebar */
.left-sidebar {
    /*background-color: #fafafa;
    padding: 1rem;
    min-height: 100vh;
    border-right: 1px solid var(--border-color);
    flex: 0 0 auto;
    width: 25%;*/
    width: 25%;
    min-height: stretch;
    opacity: 0.86;
    padding: 20px 2px 2px 15px;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
    background-color: #ffffff;
    box-sizing: border-box;
}

.right-content {
    /*padding: 1rem 1rem;*/
    background-color: #fafafa;
    flex: 0 0 auto;
    width: 73.5%;
    min-height: fit-content;
    border-radius: 12px;
    /*margin-top: 5px;*/
    /*
    width: 75%;
    min-height: 1337px;
    height: auto;
    opacity: 0.86;
    padding: 2px 2px 2px 2px;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
    background-color: #ffffff;
    box-sizing: border-box;*/
}

/* Ensure row displays as flex */
.row.g-0 {
    display: flex;
    flex-wrap: nowrap;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 1rem 0 0 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #bdbdbd;
    color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-number .checkmark {
    font-size: 1.5rem;
    font-weight: bold;
}

.step-number .checkmark-icon {
    width: 18px;
    height: 14px;
    padding: 2px 2px 2px 2px;
    /*background-color: #ffffff;*/
    box-sizing: border-box;
}

.step-label {
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif;
    color: #231e33;
    text-align: center;
    line-height: normal;
    white-space: nowrap;
}

.step.active .step-label {
    font-family: "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 600;
    color: #5009b5;
}

.step-line {
    width: 100px;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 1rem;
    margin-bottom: 2rem;
}

/*.step.completed ~ .step-line {
    background-color: var(--primary-color);
}

/* Form Controls */
.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    height: 48px;
    padding: 1px 16px 2px 8px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif;
    color: #000000;
    text-align: left;
    transition: border-color 0.15s ease-in-out;
}

.form-control:hover, .form-select:hover {
    box-sizing: border-box;
}

.form-control:disabled, .form-select:disabled {
    background-color: #f0f0f0;
    box-sizing: border-box;
    color: #cccccc;
}

.form-select {
    padding: 1px 2px 2px 8px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.25rem;
}

/* Reduce dropdown menu height for State select */
.state-dropdown option {
    padding: 2px 8px;
    font-size: 0.85rem;
    line-height: 1.2;
}

.form-control:focus, .form-select:focus {
    border: 1px solid #733ac4;
    box-sizing: border-box;
    font-family: "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 600;
    color: #000000;
    outline: none;
    box-shadow:none !important;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--error-color);
    box-sizing: border-box;
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.65rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: none;
}

.btn-primary:hover {
    background-color: #4008a0;
    border-color: #4008a0;
}

.btn-outline-secondary {
    border: 1px solid #b71c1c;
    background-color: #b71c1c;
    color: #ffffff;
    padding: 0.65rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-outline-secondary:hover {
    background-color: #8b0000;
    border-color: #8b0000;
    color: white;
}

/* Internal User Section */
.internal-user-section {
    background-color: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Password Guidelines */
.password-guidelines {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
}

.password-guideline-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.password-guideline-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height:0.8 !important;
}

.password-guideline-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
}

/* Password Validation Panel */
.password-validation-panel {
    padding: 1.25rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.password-validation-panel h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.validation-item {
    /*display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 0.9rem;*/

    width: 387px;
    /* height: 237px; */
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ArialMT", "Arial", sans-serif;
    color: #666666;
    text-align: left;
    /*line-height: normal;*/
}

/*.validation-item i {
    font-size: 1.1rem;*/
    /*color: var(--text-muted);*/
    /*transition: color 0.3s ease;
    margin-top: 0.1rem;
}*/
/*
.validation-item.valid {
    color: var(--success-color);
}

.validation-item.valid i {
    color: var(--success-color);
}

.validation-item.invalid {
    color: var(--error-color);
}

.validation-item.invalid i {
    color: var(--error-color);
}*/

/* Tooltip Icon */
.tooltip-icon {
    width: 16px;
    height: 16px;
    margin-left: 0.25rem;
    cursor: pointer;
}

/* Cards */
.card {
    border: none;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);*/
    background-color: #ffffff;
    margin-bottom: 1.5rem;
}

.card-body {
    padding: 1rem;
}

.card-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Alerts */
.alert {
    border-radius: 4px;
    padding: 1rem;
}

.alert-danger {
    background-color: #ffebee;
    border-color: #ef5350;
    color: #c62828;
}
.form-check-input {
    border-radius: 3px;
    border: 1px solid #794cff;
    box-shadow:none !important;
}

/* Form Check (Checkbox) */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-dark);
    margin-left: 0.5rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

/* Footer links with proper contrast and underline */
.footer-link {
    color: #0d47a1 !important;
    text-decoration: underline !important;
}

.footer-link:hover {
    color: #0d47a1 !important;
    text-decoration: underline !important;
}

/* Responsive */
@media (max-width: 768px) {
    .left-sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);

    }
    
    .step-indicator {
        flex-direction: column;
    }
    
    .step-line {
        width: 2px;
        height: 50px;
        margin: 0.5rem 0;
    }
}

/* Health Plan Section */
.health-plan-section {
    background-color: #eeeeee;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.health-plan-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /*padding: 0.5rem 0;*/
}

.health-plan-item span {
    line-height: 1.5;
}

.health-plan-checkbox {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Provider Identifier Section */
.provider-identifier-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.provider-identifier-type {
    flex: 0 0 170px;
}

.provider-identifier-value {
    flex: 1;
}

.remove-identifier-btn {
    flex: 0 0 auto;
    align-self: center;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Utility Classes */
.text-danger {
    color: var(--error-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

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

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-semibold {
    font-weight: 600 !important;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


.header-logo-section {
    width: 1429px;
    height: 1753px;
    /*padding: 2px 2px 2px 2px;*/
    background-color: #eeeeee;
    box-sizing: border-box;
}



.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;
        color: #721c24;
        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);
    }

    /* WCAG fix for .page-number class color contrast */
    .custom-pagination .page-number,
    .page-number {
        color: #333333 !important; 
        background-color: #ffffff !important;
        border: 1px solid #333333 !important;
    }

    .custom-pagination .page-number:hover,
    .custom-pagination .page-number:focus,
    .page-number:hover,
    .page-number:focus {
        color: #ffffff !important;
        background-color: #333333 !important; 
    }

    .custom-pagination .page-number:active,
    .custom-pagination .page-number.active,
    .page-number:active,
    .page-number.active {
        color: #ffffff !important;
        background-color: #000000 !important; 
        border-color: #000000 !important;
    }

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: 10px !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !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: #ffffff !important;
    box-sizing: border-box !important;
    font-family: 'ElevanceSans-Semibold', 'Elevance Sans Semibold', 'Elevance Sans', sans-serif !important;
    font-weight: 650 !important;
    color: #323232 !important;
    text-align: left !important;
    line-height: 17px !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    display: block !important;
    border-radius: 8px !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: #ffffff !important;
    margin: 0 !important;
}

.custom-tooltip-content,
div.custom-tooltip-content {
    width: 100% !important;
    height: auto !important;
    min-height: 40px !important;
    background-color: #ffffff !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: 12px !important;
    margin: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    display: block !important;
    border: none !important;
    border-radius: 8px !important;
}

/* Override Bootstrap tooltip default styling */
.tooltip {
    background: transparent !important;
    opacity: 1 !important;
}

.tooltip .tooltip-inner {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    max-width: none !important;
}

.tooltip .tooltip-arrow {
    display: none !important;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow {
    display: none !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: 270px !important;
    height: fit-content !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: 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-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;
    font-size: 14px !important;
    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;
}

#cancel {
    width: 140px;
    height: 48px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    border: none;
    background-color: #b71c1c;
    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;
}

#cancel:hover {
    background-color: #a62316;
    box-sizing: border-box;
}

#cancel:active {
    background-color: #cccccc;
    box-sizing: border-box;
}

#cancel:disabled {
    background-color: #fdf4f2;
    box-sizing: border-box;
    color: #fcd5d3;
}

#cancel:focus {
    background-color: #a62316;
    box-sizing: border-box;
}


#continue {
    width: 152px;
    height: 48px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    border: none;
    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;
}

#continue:hover {
    background-color: #733ac4;
    box-sizing: border-box;
}

#continue:active {
    background-color: #400791;
    box-sizing: border-box;
}

#continue:disabled {
    background-color: #bbafe9;
    box-sizing: border-box;
}

#continue:focus {
    background-color: #733ac4;
    box-sizing: border-box;
}

/* Back Button Styling */
#back {
    width: 140px;
    height: 48px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    border: 1px solid #949494;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 650;
    color: #666666;
    text-align: center;
    line-height: normal;
    cursor: pointer;
}

#back:hover {
    background-color: #eeeeee;
    box-sizing: border-box;
}

#back:active {
    background-color: #cccccc;
    box-sizing: border-box;
}

#back:disabled {
    background-color: #ffffff;
    box-sizing: border-box;
    color: #cccccc;
}

#back:focus {
    background-color: #eeeeee;
    box-sizing: border-box;
}

/* Exit Registration Dialog Styles */
.exit-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.exit-dialog {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.exit-dialog-header {
    /*display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;*/
    /*width: 187px;*/
    height: 32px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Bold", "Elevance Sans Bold", "Elevance Sans", sans-serif;
    font-weight: 700;
    color: #231e33;
    text-align: left;
    line-height: normal;
    font-size:24px;
}

.exit-dialog-header span {
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Bold", "Elevance Sans Bold", "Elevance Sans", sans-serif;
    font-weight: 700;
    color: #231e33;
    text-align: left;
    line-height: normal;
}

.exit-dialog-content {
    /*  background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
    color: #333333;
    text-align: left;
    line-height: normal;
    margin-bottom: 100px;
    margin-top: 18px;*/

    width: 416px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
    color: #333333;
    text-align: left;
    line-height: normal;
    font-size: 13px;
    margin-bottom: 100px;
    margin-top: 21px;
}

.exit-dialog-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px 20px 20px;
}

/* Dialog Cancel button - gray outlined style */
.dialog-cancel {
    width: 140px;
    height: 48px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    border: 1px solid #949494;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 650;
    color: #666666;
    text-align: center;
    line-height: normal;
    cursor: pointer;
}

.dialog-cancel:hover {
    background-color: #eeeeee;
    box-sizing: border-box;
}

.dialog-cancel:active {
    background-color: #cccccc;
    box-sizing: border-box;
}

.dialog-cancel:focus {
    background-color: #eeeeee;
    box-sizing: border-box;
}

.dialog-cancel:disabled {
    background-color: #ffffff;
    box-sizing: border-box;
    color: #cccccc;
}

/* Dialog Exit button - red filled style matching Blazor */
.dialog-exit {
    width: 140px;
    height: 48px;
    border-radius: 6px;
    border: none;
    background-color: #c8102e;
    box-sizing: border-box;
    font-family: "ElevanceSans-Semibold", "Elevance Sans Semibold", "Elevance Sans", sans-serif;
    font-weight: 650;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    line-height: normal;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dialog-exit:hover {
    background-color: #a00d26;
    box-sizing: border-box;
}

.dialog-exit:active {
    background-color: #a00d26;
    box-sizing: border-box;
}

.dialog-exit:focus {
    background-color: #a00d26;
    box-sizing: border-box;
}

.font-small {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem; /* 14px */
}

/* Validation Error Styling */
/* Hide the exclamation mark icon inside text boxes */
.form-control.is-invalid {
    background-image: none !important;
    padding-right: 0.75rem !important;
}

.form-select.is-invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    padding-right: 2.25rem !important;
}

/* Error message with cross-icon - single class for all validation errors */
.field-validation-error,
.invalid-feedback,
.text-danger.small.mt-1 {
    display: flex !important;
    align-items: flex-start;
    gap: 6px;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

/* Only show icon when error message has content and is visible */
.field-validation-error:not(:empty)::before,
.invalid-feedback:not(:empty)::before,
.text-danger.small.mt-1:not(:empty):not([style*="display: none"]):not([style*="display:none"])::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background-image: url('/images/cross-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Ensure asterisks in labels don't get the icon */
.form-label .text-danger {
    display: inline !important;
}

.form-label .text-danger::before {
    display: none !important;
}

/* Footer Styles */
.registration-footer {
    width: 100%;
    background-color: #eeeeee;
    padding: 16px 0;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1430px;
    margin: 0 auto;
    padding: 10px 25px;
    background-color: #eeeeee;

    /*width: 529px;*/
    /*height: 16px;*/
    /*background-color: rgba(255, 255, 255, 0);*/
    box-sizing: border-box;
    font-family: "ArialMT", "Arial", sans-serif;
    color: #6e6e6e;
    text-align: left;
    line-height: normal;
    letter-spacing: 0.3px;
}

.footer-copyright {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
}

.footer-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-terms {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
    font-size: 14px;
    color: #333333;
}

.footer-link {
    color: #0d47a1;
    text-decoration: none;
    cursor: pointer;
    margin-left: 4px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-right-links {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.footer-right-links .footer-link {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif;
    font-size: 14px;
    margin-left: 0;
}


.rightContentMainHeading {
    width: 362px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
    color: #5009b5;
    text-align: left;
    line-height: normal;
    font-size:24px;
}
.leftMenuHeading {
    /*width: 131px;*/
    height: 34px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
    color: #5009b5;
    text-align: left;
    line-height: normal;
    font-size: 23px;
}

.contact-web-customer {
    width: 286px;
    height: 29px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
    color: #000000;
    text-align: left;
    line-height: normal;
    font-size: 20px;
}

.carelon-medical-bene {
    width: 298px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ArialMT", "Arial", sans-serif;
    color: #231e33;
    text-align: left;
    line-height: normal;
    font-size:12px
}

.healthPlanDetailsNote {
    width: 635px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Regular", "Elevance Sans", sans-serif;
    color: #595959;
    text-align: left;
    line-height: normal;
    font-size: 14px;
}
.regSummSubHeading {
    width: 199px;
    height: 27px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ElevanceSans-Medium", "Elevance Sans Medium", "Elevance Sans", sans-serif;
    font-weight: 500;
    color: #5009b5;
    text-align: left;
    line-height: normal;
    font-size:20px;
}

.regSummLbl {
    /*width: 113px;*/
    height: 16px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "Arial-BoldMT", "Arial Bold", "Arial", sans-serif;
    font-weight: 700;
    color: #231e33;
    text-align: left;
    line-height: normal;
    /*margin-bottom: 1rem;*/
    font-size: 14px;
}
.regSummVal {
    /*width: 108px;*/
    height: 16px;
    background-color: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    font-family: "ArialMT", "Arial", sans-serif;
    color: #231e33;
    text-align: left;
    line-height: normal;
    font-size:14px;
}

.oktaEmailOtpContent {
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif !important;
    font-weight: 400 !important;
}

.resendEmail {
    text-decoration: underline;
    padding: 0;
    font-family: "ElevanceSans-Regular", "Elevance Sans Regular", "Elevance Sans", sans-serif !important;
    font-weight: 400 !important;
}
.userRoleToolTip{
    width:400px;
}