/* inlined: style_variables.css */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;600&display=swap');

:root {
    /* Typography */
    --font-family-base: 'Geist';
    --font-family-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Font sizes */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;

    /* Line heights */
    --line-height-xs: 18px;
    --line-height-sm: 20px;
    --line-height-md: 24px;
    --line-height-lg: 28px;

    /* Typography mixins */
    --body-sm-14-regular: normal var(--font-weight-regular) var(--font-size-sm)/var(--line-height-sm) var(--font-family-base);

    /* Brand palette */
    --brand-50: #eff4ff;
    --brand-100: #d1e0ff;
    --brand-200: #b2ccff;
    --brand-300: #84adff;
    --brand-400: #528bff;
    --brand-500: #2a6aeb;
    --brand-600: #1153d6;
    --brand-700: #003cb2;
    --brand-800: #002f8c;
    --brand-900: #002266;

    /* Neutral palette */
    --gray-25: #fcfcfd;
    --gray-50: #f9fafb;
    --gray-100: #f2f4f7;
    --gray-100-alt: #f2f4f7;
    --gray-200: #eaecf0;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-500: #667085;
    --gray-600: #475467;
    --gray-700: #344054;
    --gray-800: #182230;
    --gray-900: #101828;
    --gray-950: #0c111d;

    /* Status palette */
    --error-25: #fffbfa;
    --error-50: #fef3f2;
    --error-100: #fee4e2;
    --error-200: #fecdca;
    --error-300: #fda29b;
    --error-400: #f97066;
    --error-500: #f04438;
    --error-600: #d92d20;
    --error-700: #b42318;
    --error-800: #912018;
    --error-900: #7a271a;
    --error-950: #55160c;

    --caution-25: #fefdf0;
    --caution-50: #fefbe8;
    --caution-100: #fef7c3;
    --caution-200: #feee95;
    --caution-300: #fde272;
    --caution-400: #fac515;
    --caution-500: #eaaa08;
    --caution-600: #ca8504;
    --caution-700: #a15c07;
    --caution-800: #854a0e;
    --caution-900: #713b12;
    --caution-950: #542c0d;

    --success-25: #f6fef9;
    --success-50: #ecfdf3;
    --success-100: #dcfae6;
    --success-200: #abefc6;
    --success-300: #75e0a7;
    --success-400: #47cd89;
    --success-500: #17b26a;
    --success-600: #079455;
    --success-700: #067647;
    --success-800: #085d3a;
    --success-900: #074d31;
    --success-950: #053321;

    /* Generic colors */
    --color-white: #ffffff;
    --color-red: #f04438;
    --color-gray-25: var(--gray-25);
    --color-gray-50: var(--gray-50);
    --color-gray-100: var(--gray-100);
    --color-gray-100-alt: var(--gray-100-alt);
    --color-gray-200: var(--gray-200);
    --color-gray-300: var(--gray-300);
    --color-gray-400: var(--gray-400);
    --color-gray-500: var(--gray-500);
    --color-gray-600: var(--gray-600);
    --color-gray-700: var(--gray-700);
    --color-gray-800: var(--gray-800);
    --color-gray-900: var(--gray-900);
    --color-gray-950: var(--gray-950);

    --color-blue-50: var(--brand-50);
    --color-blue-100: var(--brand-100);
    --color-blue-200: var(--brand-200);
    --color-blue-300: var(--brand-300);
    --color-blue-400: var(--brand-400);
    --color-blue-500: var(--brand-500);
    --color-blue-600: var(--brand-600);
    --color-blue-700: var(--brand-700);
    --color-blue-800: var(--brand-800);
    --color-blue-900: var(--brand-900);
    --color-brand-800: var(--color-blue-800);
    --color-brand-900: var(--color-blue-900);

    --color-caution-25: var(--caution-25);
    --color-caution-50: var(--caution-50);
    --color-caution-100: var(--caution-100);
    --color-caution-200: var(--caution-200);
    --color-caution-300: var(--caution-300);
    --color-caution-400: var(--caution-400);
    --color-caution-500: var(--caution-500);
    --color-caution-600: var(--caution-600);
    --color-caution-700: var(--caution-700);
    --color-caution-800: var(--caution-800);
    --color-caution-900: var(--caution-900);
    --color-caution-950: var(--caution-950);
    --color-success-25: var(--success-25);
    --color-success-50: var(--success-50);
    --color-success-100: var(--success-100);
    --color-success-200: var(--success-200);
    --color-success-300: var(--success-300);
    --color-success-400: var(--success-400);
    --color-success-500: var(--success-500);
    --color-success-600: var(--success-600);
    --color-success-700: var(--success-700);
    --color-success-800: var(--success-800);
    --color-success-900: var(--success-900);
    --color-success-950: var(--success-950);

    --color-text-gray-400: var(--gray-400);
    --color-text-gray-500: var(--gray-500);
    --color-text-gray-700: var(--gray-700);
    --color-text-gray-800: var(--gray-800);
    --color-text-gray-900: var(--gray-900);
    --color-text-brand-600: var(--brand-600);
    --color-text-brand-700: var(--brand-700);
    --color-text-brand-800: var(--color-brand-800);
    --color-text-brand-900: var(--color-brand-900);

    /* Interaction states */
    --color-hover-blue-light: #f5f8ff; /* Light blue for hover states on selects and similar elements */

    /* Spacing */
    --spacing-0: 0px;
    --spacing-2: 2px;
    --spacing-4: 4px;
    --spacing-6: 6px;
    --spacing-8: 8px;
    --spacing-10: 10px;
    --spacing-12: 12px;
    --spacing-16: 16px;
    --spacing-20: 20px;
    --spacing-24: 24px;
    --spacing-32: 32px;

    /* Sizes / heights */
    --size-16: 16px;
    --size-24: 24px;
    --bee-btn-height-sm: 24px;
    --bee-btn-height-md: 32px;
    --bee-btn-height-lg: 40px;

    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-8: 8px;
    --radius-lg: 10px;
    --radius-12: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Segmented */
    --segmented-selected-white: var(--color-white);
    --segmented-selected-brand: var(--brand-500);
    --segmented-hover-transparent: rgba(0, 0, 0, 0.04);

    /* Shadows */
    --shadows-brand-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadows-brand-shadow-md: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadows-brand-inner-shadow-md: inset 0 2px 4px rgba(0, 0, 0, 0.12);
    --shadows-focus-ring-brand: 0 0 0 3px rgba(39, 125, 255, 0.4);
    --shadows-grey-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadows-grey-shadow-md: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadows-grey-inner-shadow-md: inset 0 2px 4px rgba(0, 0, 0, 0.12);
    --shadows-focus-ring-grey: 0 0 0 3px rgba(102, 112, 133, 0.4);
    --shadows-error-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadows-error-shadow-md: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadows-error-inner-shadow-md: inset 0 2px 4px rgba(0, 0, 0, 0.12);
    --shadows-focus-ring-error: 0 0 0 3px rgba(255, 69, 69, 0.4);
    --shadows-modal-xl: 0 32px 64px -12px rgba(24, 34, 48, 0.14);
    --shadows-modal-layered: 0 32px 64px -12px rgba(252, 252, 253, 0.10), 0 32px 64px -12px rgba(24, 34, 48, 0.14);
    --shadows-card-grey-lg: 0 1px 3px 0 rgba(252, 252, 253, 0.08), 0 1px 3px 0 rgba(24, 34, 48, 0.10), 0 1px 2px 0 rgba(24, 34, 48, 0.06);
    --shadows-card-brand-sm: 0 1px 3px 0 rgba(239, 244, 255, 0.08), 0 1px 3px 0 rgba(0, 47, 140, 0.10), 0 1px 2px 0 rgba(0, 47, 140, 0.06);
    --shadows-card-caution-lg: 0 12px 16px -4px rgba(254, 251, 232, 0.03), 0 12px 16px -4px rgba(133, 74, 14, 0.08), 0 4px 6px -2px rgba(133, 74, 14, 0.03);
    --shadows-card-success-lg: 0 12px 16px -4px rgba(236, 253, 243, 0.03), 0 12px 16px -4px rgba(8, 93, 58, 0.08), 0 4px 6px -2px rgba(8, 93, 58, 0.03);
    --shadows-card-error-lg: 0 12px 16px -4px rgba(253, 236, 236, 0.03), 0 12px 16px -4px rgba(93, 8, 8, 0.08),  0 4px 6px -2px rgba(93, 8, 8, 0.03);
    /* Button tokens */
    --colors-components-buttons-primary-brand-bg-default-brand-500: var(--color-blue-500);
    --colors-components-buttons-primary-brand-bg-hover-brand-600: var(--color-blue-600);
    --colors-components-buttons-primary-brand-bg-pressed-brand-400: var(--color-blue-400);
    --colors-components-buttons-primary-brand-fg-default-white-un: var(--color-white);
    --colors-components-buttons-primary-brand-border-disabled-gray-200: var(--color-gray-200);
    --colors-components-buttons-primary-brand-bg-disabled-gray-100-alt: var(--color-gray-100-alt);
    --colors-components-buttons-primary-brand-fg-disabled-gray-400: var(--color-gray-400);

    --colors-components-buttons-secondary-brand-border-default-brand-300-alt: var(--color-blue-200);
    --colors-components-buttons-secondary-brand-border-hover-brand-400: var(--color-blue-400);
    --colors-components-buttons-secondary-brand-bg-default-white-alt: var(--color-white);
    --colors-components-buttons-secondary-brand-bg-hover-brand-50: var(--color-blue-50);
    --colors-components-buttons-secondary-brand-fg-default-brand-500: var(--color-text-brand-600);
    --colors-components-buttons-secondary-brand-fg-hover-brand-600: var(--color-blue-700);
    --colors-components-buttons-secondary-brand-fg-pressed-brand-400: var(--color-blue-400);
    --colors-components-buttons-secondary-brand-border-disabled-gray-200: var(--color-gray-200);
    --colors-components-buttons-secondary-brand-fg-disabled-gray-400: var(--color-text-gray-400);

    --colors-components-buttons-secondary-gray-border-default-gray-300: var(--color-gray-300);
    --colors-components-buttons-secondary-gray-border-hover-gray-400: var(--color-gray-400);
    --colors-components-buttons-secondary-gray-bg-default-white-alt: var(--color-white);
    --colors-components-buttons-secondary-gray-bg-hover-gray-200-alt: var(--color-gray-200);
    --colors-components-buttons-secondary-gray-fg-default-gray-600: var(--color-text-gray-700);
    --colors-components-buttons-secondary-gray-fg-hover-gray-700: var(--color-text-gray-800);
    --colors-components-buttons-secondary-gray-fg-pressed-gray-500: var(--color-gray-500);

    --colors-components-buttons-tertiary-brand-fg-default-brand-500: var(--color-text-brand-600);
    --colors-components-buttons-tertiary-brand-fg-hover-brand-600: var(--color-blue-700);
    --colors-components-buttons-tertiary-brand-bg-hover-brand-50: var(--color-blue-50);
    --colors-components-buttons-tertiary-brand-bg-pressed-white-alt: var(--color-white);
    --colors-components-buttons-tertiary-brand-fg-disabled-gray-400: var(--color-text-gray-400);

    --colors-components-buttons-tertiary-gray-fg-default-gray-600: var(--color-text-gray-700);
    --colors-components-buttons-tertiary-gray-fg-hover-gray-700: var(--color-text-gray-800);
    --colors-components-buttons-tertiary-gray-bg-hover-gray-200-alt: var(--color-gray-200);
    --colors-components-buttons-tertiary-gray-bg-pressed-white-alt: var(--color-white);
    --colors-components-buttons-tertiary-gray-fg-pressed-gray-500: var(--color-gray-500);
    --colors-components-buttons-tertiary-gray-fg-disabled-gray-400: var(--color-text-gray-400);

    --colors-components-buttons-primary-destructive-bg-default-error-600: var(--error-600);
    --colors-components-buttons-primary-destructive-bg-hover-error-700: var(--error-700);
    --colors-components-buttons-primary-destructive-bg-pressed-error-500: var(--error-500);

    --colors-components-buttons-tertiary-destructive-fg-default-error-600: var(--error-600);
    --colors-components-buttons-tertiary-destructive-bg-hover-error-50: var(--error-50);
    --colors-components-buttons-tertiary-destructive-fg-hover-error-700: var(--error-700);
    --colors-components-buttons-tertiary-destructive-fg-pressed-error-500: var(--error-500);

    /* Segmented tokens */
    --colors-components-segmented-border-selected-gray: var(--color-gray-200);
    --colors-components-segmented-bg-selected-white: var(--color-white);
    --colors-components-segmented-text-selected: var(--color-brand-900);
    --colors-components-segmented-text-hover: var(--color-text-gray-900);
    --colors-components-segmented-text-default: var(--color-text-gray-700);
    --colors-components-segmented-text-disabled: var(--color-text-gray-400);
    --colors-components-segmented-border-selected-brand: var(--color-blue-100);
    --colors-components-segmented-bg-selected-brand: var(--color-blue-50);
    --colors-components-segmented-bg-hover-transperent: var(--segmented-hover-transparent);
    --colors-components-segmented-icon-selected: var(--color-blue-700);
    --colors-components-segmented-icon-hover: var(--color-text-gray-700);
    --colors-components-segmented-icon-default: var(--color-gray-600);

    /* Form control tokens */
    --colors-components-checkboxes-border-default-gray-400: var(--color-gray-400);
    --colors-components-checkboxes-bg-default-white: var(--color-white);
    --colors-components-checkboxes-fg-default-white-un: var(--color-white);
    --colors-components-checkboxes-border-hover-gray-500: var(--color-gray-500);
    --colors-components-checkboxes-bg-default-brand-500: var(--color-blue-500);
    --colors-components-checkboxes-bg-hover-brand-600: var(--color-blue-600);
    --colors-components-checkboxes-bg-pressed-brand-400: var(--color-blue-400);
    --colors-components-checkboxes-border-disabled-gray-300: var(--color-gray-300);
    --colors-components-checkboxes-bg-disabled-gray-100: var(--color-gray-100);
    --colors-components-inputs-border-default-gray-300: var(--color-gray-300);
    --colors-components-inputs-bg-default-white: var(--color-white);
    --colors-components-inputs-border-active-brand-300: var(--color-blue-300);

    --colors-foreground-fg-gray-400: var(--color-gray-400);
    --colors-foreground-fg-gray-500: var(--color-gray-500);
    --colors-text-gray-25: var(--gray-25);
    --colors-text-gray-400: var(--color-text-gray-400);
    --colors-text-gray-700: var(--color-text-gray-700);
    --colors-text-gray-800: var(--color-text-gray-800);
    --colors-text-gray-900: var(--color-text-gray-900);
    --colors-text-brand-600: var(--color-text-brand-600);
    --colors-text-brand-700: var(--color-text-brand-700);
    --colors-text-brand-800: var(--color-text-brand-800);
    --colors-text-brand-900: var(--color-text-brand-900);
    --colors-text-caution-900: var(--color-text-caution-900);
    --colors-text-success-900: var(--color-text-success-900);
    --colors-text-error-950: var(--error-950);
    --color-text-caution-900: var(--color-caution-900);
    --color-text-success-900: var(--color-success-900);
    --color-text-error-600: var(--error-600);

    --colors-background-bg-white: var(--color-white);
    --colors-background-bg-gray-50: var(--color-gray-50);
    --colors-background-bg-gray-100: var(--color-gray-100);
    --colors-background-bg-gray-900: var(--gray-900);
    --colors-background-bg-brand-50: var(--color-blue-50);
    --colors-background-bg-caution-25: var(--color-caution-25);
    --colors-background-bg-caution-50: var(--color-caution-50);
    --colors-background-bg-caution-100: var(--color-caution-100);
    --colors-background-bg-success-25: var(--color-success-25);
    --colors-background-bg-success-50: var(--color-success-50);
    --colors-background-bg-success-100: var(--color-success-100);
    --colors-background-bg-error-100: var(--error-100);
    --colors-background-bg-error-25: var(--error-25);


    --colors-border-border-gray-200: var(--color-gray-200);
    --colors-border-border-gray-300: var(--color-gray-300);
    --colors-border-border-brand-200: var(--color-blue-200);
    --colors-border-border-brand-400: var(--color-blue-400);
    --colors-border-border-caution-200: var(--color-caution-200);
    --colors-border-border-success-200: var(--color-success-200);
    --colors-border-border-error-400: var(--error-400);

    /* Misc */
    --select-listbox-max-height: 240px;
}

/* end of inline: style_variables.css */

/* ===== Access Status Modal ===== */
.modal.access-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 480px;
    max-width: 640px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--colors-border-border-gray-200);
    background: var(--color-white);
    box-shadow: var(--shadows-modal-layered);
    overflow: hidden;
    text-align: left;
}

.status-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    gap: var(--spacing-12);
    padding: var(--spacing-16);
    align-self: stretch;
}

.status-content .message2{
    align-self: stretch;
    color: var(--colors-text-gray-700, #344054);

    /* Body-sm-14/Regular */
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.status-details{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-4, 4px);
}

.status-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-12);
    font-family: var(--font-family-base);
}

.text-xs,
.status-label,
.notice {
    font-size: 12px;
    line-height: 18px;
}

.text-sm,
.status-value {
    font-size: 14px;
    line-height: 20px;
}

.text-md,
.error-title {
    font-size: 16px;
    line-height: 24px;
}

.font-regular,
.status-label,
.notice {
    font-weight: var(--font-weight-regular);
}

.font-semibold,
.status-value,
.notice a {
    font-weight: var(--font-weight-semibold);
}

.font-bold,
.error-title {
    font-weight: var(--font-weight-bold);
}

.status-line img {
    width: 24px;
    height: 24px;
}

.status-label,
.status-value,
.notice,
.error-title,
.error-details,
.error-message {
    font-family: var(--font-family-base);
}

.status-label {
    color: var(--color-gray-700);
}

.status-value.complete {
    color: var(--color-success-600);
}

.status-value.incomplete {
    color: var(--color-caution-700);
}

.notice {
    margin: 0;
    color: var(--color-gray-700);
    text-align: left;
}

.notice a {
    color: var(--color-blue-600);
    text-decoration: underline;
}

.notice2{
    align-self: stretch;
    color: var(--colors-text-gray-700, #344054);

    /* Body-xs-12/Regular */
    font-family: Geist;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
}

.error-title {
    margin: 0;
    /*color: var(--color-red);*/
}

.error-details {
    margin: 0;
    font-size: 14px;
}

.error-message {
    margin: 0;
    padding: var(--spacing-8);
    font-size: 12px;
    font-family: var(--font-family-mono);
    color: var(--color-gray-500);
    white-space: pre-wrap;
    overflow-x: auto;
    overflow-y: auto;
}
