/* 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 */

/* ===== Base Layer ===== */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: var(--font-family-base);
    background:#EAECF0;
    /*background-image: radial-gradient(800px circle at 50% 42%,rgba(255,255,255,.065) 0%,rgba(255,255,255,0) 60%),linear-gradient(180deg,#1e2633 0%,#161f2c 100%);*/
    color: var(--color-gray-900);
}

.viewport {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
}

/* ===== Utilities ===== */
.text-xs {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
}

.text-sm {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
}

.text-md {
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
}

.text-lg {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
}

.font-regular {
    font-weight: var(--font-weight-regular);
}

.font-semibold {
    font-weight: var(--font-weight-semibold);
}

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

.font-mono {
    font-family: var(--font-family-mono);
}

.text-brand {
    color: var(--colors-text-brand-800);
}

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

.text-gray-900 {
    color: var(--color-text-gray-900);
}

.scroll-pane {
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.scroll-pane,
.accounts-list,
.modal-body.categories,
.services-container {
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.layout-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.layout-modal-header-bar {
    width: 100%;
    height: 8px;
    background: var(--color-blue-600);
}

.layout-modal-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-4);
    width: 100%;
    padding: var(--spacing-12) var(--spacing-20) 0;
}

.layout-modal-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    padding: var(--spacing-16) var(--spacing-20);
}

.layout-modal-actions-container,
.actions-container {
    display: flex;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: var(--spacing-8);
    padding: 0 var(--spacing-16) var(--spacing-16) var(--spacing-16);
    align-self: stretch;
}

.actions-container2 {
    display: flex;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: var(--spacing-8);
    padding: 0 var(--spacing-20) var(--spacing-20) var(--spacing-20);
    align-self: stretch;
}


.layout-modal-actions,
.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    align-self: stretch;
}

.layout-modal-actions-group,
.left-buttons,
.middle-buttons,
.right-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-12);
}

.long_text{
    /*display: flex;*/
    /*padding: var(--spacing-0, 0);*/
    align-items: flex-start;
    /*gap: var(--spacing-0, 0);*/
    width: 142px;
}

.layout-modal-actions-group--fixed,
.left-buttons,
.middle-buttons {
    width: 242px;
    height: 32px;
}

/* ===== Modal Frame ===== */
.modal {
    width: 640px;
    max-width: 100vh;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadows-modal-xl);
    overflow: auto; /* keep clipping; dropdowns escape via JS portal */
}

.layout-modal-header,
.modal-header {
    display: flex;
    padding: var(--spacing-12, 12px) var(--spacing-20, 20px) var(--spacing-0, 0) var(--spacing-20, 20px);
    align-items: flex-start;
    gap: var(--spacing-20, 20px);
    align-self: stretch;

}

.layout-modal-header-bar,
.modal-header-bar {
    width: 100%;
    height: 8px;
    background: var(--color-blue-600);

    display: flex;
    /*padding: var(--spacing-12, 12px) var(--spacing-20, 20px) var(--spacing-0, 0) var(--spacing-20, 20px);*/
    padding: 0;
    align-items: flex-start;
    gap: var(--spacing-20, 20px);
    align-self: stretch;
}

.layout-modal-header-content
/*,*/
/*.modal-header-content */
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-4);
    width: 100%;
    padding: var(--spacing-12) var(--spacing-20) 0;
}

.layout-modal-body,
.modal-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    padding: var(--spacing-16) var(--spacing-20);
}

.modal-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: var(--spacing-12) var(--spacing-20) 0;
}

.modal-title-container2 {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: var(--spacing-6) 0 var(--spacing-12, 0);
}

.modal-title-container img {
    width: auto;
    height: 60px;
}


.modal-title-container2 .logo2 {
    display: flex;
    padding: var(--spacing-0, 0);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-0, 0);
    align-self: stretch;
}


.modal-title-container2 div span{
    display: flex;
    align-items: center;
    gap: var(--spacing-8, 8px);
    align-self: stretch;



    color: var(--colors-text-gray-700, #344054);

    /* Display-xs-24/Semibold */
    font-family: Geist;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
}

.header-text {
    margin-top: var(--spacing-6);
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-900);
}

.divider {
    width: 100%;
    margin-top: var(--spacing-4);
    margin-bottom: var(--spacing-4);
    border-top: 1px solid var(--color-gray-300);
}

.divider-footer {
    margin-bottom: var(--spacing-24);
}

/* ===== Footer ===== */
footer {
    position: fixed;
    right: var(--spacing-16);
    bottom: var(--spacing-8);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-16);
    padding: var(--spacing-8) var(--spacing-16);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xs);
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-gray-700);
}

footer a {
    color: var(--color-text-brand-600);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== Collapsible ===== */
.collapsible {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-6);
    cursor: pointer;
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-blue-600);
    user-select: none;
}

.notification.collapsible {
    align-items: flex-start;
}

.collapsible .chev {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.collapsible:not(.active) .chev {
    transform: rotate(-90deg);
}

.collapsible.active .chev {
    transform: rotate(0deg);
}

.collapsible-content {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsible-content.open {
    max-height: 240px;
    overflow-y: hidden;
}

/* ===== Error toggle ===== */

.error-toggle {
    align-self: stretch;
}