* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.hidden {
	display: none;
}

.magenta {
	background-color: #f0f9;
	box-shadow: none;
	filter: drop-shadow(0px -1px 30px #f0f0);
	border: 2px solid #c0f;
	height: 32px;
	width: 32px;
}

.yellow {
	background-color: #ff0;
	box-shadow: 0 0 5px #ff07;
	filter: drop-shadow(10px -1px 40px #ff05);
}

[data-indicator="workflow_btn"] span {
	padding-right: 8px;
}

.cyan {
	background-color: #0ff;
	box-shadow: 0 0 5px #0ff7;
	filter: drop-shadow(0px -1px 30px #0ff9);
}

.deepskyblue {
	background-color: #00bfff;
	box-shadow: 0 0 5px #00bfff70;
	filter: drop-shadow(0px -1px 30px #00bfff70);
}

.red {
	background-color: #f00;
	box-shadow: 0 0 5px #f007;
	filter: drop-shadow(0px -1px 30px #f00);
}

.lime {
	background-color: #0f0;
	box-shadow: 0 0 5px #0f07;
	filter: drop-shadow(0px -1px 30px #0f05);
}

body, html {
	background-color: #04000b;
	color: #c1d1d6;
}

body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: 'Roboto', 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
	font-weight: 100;
	display: block;
}

nav {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
}

nav button {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #c0f;
	border-radius: 6px;
	background-color: #000;
	padding: 10px;
}

nav button:hover {
	border-color: deepskyblue;
	filter: drop-shadow(0 0 15px #00bfff50);
}

nav button img {
	width: 20px;
	height: 20px;
	filter: invert(1);
}

#response_box {
    width: min(80ch, calc(100vw - 32px));
    max-height: 50vh;
    overflow-y: auto; /* prevent forced scrollbar; show only when needed */
    overflow-x: hidden;
    scrollbar-gutter: stable both-edges; /* avoid layout shift when scrollbar appears */
    word-break: break-word;
    position: fixed;
    left: 50%;
    top: calc(25vh + (62px / 2)); /* Not actually centered but visually centered. Half of the menu bar height - the lower padding + 50% */
    transform: translateX(-50%);
    letter-spacing: 0.2px;
    line-height: 1.6;
    border-left: 3px solid #0f0;
    padding-left: 15px;
}

#response_box .scroll-gradient {
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.5lh;
	background: linear-gradient(0deg, #04000b 0%, transparent 100%);
	pointer-events: none;
	z-index: 10;
}

#response_box p {
    margin: 0.8em 0;
    line-height: 1.6em;
    text-shadow: 1px 0px 7px #95959570;
}

/* Markdown/Chat Content Styles */
/* Headings */
#response_box h1, #response_box h2, #response_box h3,
#response_box h4, #response_box h5, #response_box h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.3;
    color: #c1d1d6;
}

#response_box h1 { font-size: 1.8em; border-bottom: 2px solid rgba(255,255,255,0.2); padding-bottom: 0.3em; }
#response_box h2 { font-size: 1.5em; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 0.2em; }
#response_box h3 { font-size: 1.3em; }
#response_box h4 { font-size: 1.15em; }
#response_box h5 { font-size: 1.05em; }
#response_box h6 { font-size: 1em; color: rgba(193,209,214,0.7); }

/* Lists */
#response_box ul, #response_box ol {
    margin: 0.8em 0;
    padding-left: 2em;
}
#response_box li {
    margin: 0.3em 0;
    line-height: 1.6;
}

/* Blockquotes */
#response_box blockquote {
    margin: 1em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #0f0;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(193, 209, 214, 0.8);
    font-style: italic;
}

/* Horizontal rule */
#response_box hr {
    margin: 2em 0;
    border: none;
    border-top: 2px solid rgba(255,255,255,0.2);
    opacity: 0.5;
}

/* Links */
#response_box a {
    color: #0f0;
    text-decoration: none;
    border-bottom: 1px dotted #0f0;
    transition: all 0.2s ease;
}
#response_box a:hover {
    color: #ff0;
    border-bottom-color: #ff0;
}

/* Inline code */
#response_box code {
    background: rgba(255, 255, 255, 0.05);
    color: #ffff66;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

/* Code blocks */
.code-block-wrapper {
    position: relative;
    margin: 1em 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}
#response_box pre {
    margin: 0;
    padding: 1em;
    background: transparent; /* wrapper supplies background */
    overflow-x: auto;
    border-radius: 8px;
}
#response_box pre code {
    display: block;
    background: none;
    color: #c1d1d6;
    padding: 0;
    font-size: 0.9em;
    line-height: 1.5;
    white-space: pre;
    word-break: normal;
    word-wrap: normal;
}

/* Copy button for code blocks */
.code-copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 12px;
    background: #0f0;
    color: #04000b;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.85;
    z-index: 10;
}
.code-copy-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.2);
}
.code-copy-btn.copied {
    background: #ff0;
    color: #04000b;
}

/* Tables */
#response_box table {
    margin: 1em 0;
    border-collapse: collapse;
    width: 100%;
    overflow-x: auto;
    display: block;
}
#response_box th, #response_box td {
    padding: 0.5em 1em;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: left;
}
#response_box th {
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    color: #c1d1d6;
}

/* Images */
#response_box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}

#compose_bar {
	display: flex;
	position: fixed;
	left: 50%;
	bottom: 30px;
	transform-origin: bottom;
	transform: translateX(-50%);
	width: min(70ch, calc(100vw - 32px));
	flex-direction: column-reverse;
	align-items: flex-end;
}

/* Base form styles */
#compose_bar form {
	display: flex;
	position: relative;
	align-items: flex-end;
	width: 100%;
	border: 1px solid #c0f;
	border-radius: 12px;
	z-index: 99;
	background: #0001;
	overflow: hidden;
	filter: drop-shadow(0 0 30px #c0f3);
}

#compose_bar form:hover, #compose_bar form:focus {
	filter: drop-shadow(0px 0px 30px #0cf3);
	border-color: #00bfff;
}

#compose_bar form .input-wrapper {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	width: 100%;
}


/* Base button styles for form buttons */
#compose_bar form button {
	position: absolute;
	bottom: 8px;
	z-index: 3;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(194, 201, 203, 0.8);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	opacity: 0.3;
	
}

#compose_bar form button:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #0066ff;
	color: #c2c9cb;
	opacity: 0.7;
}

#compose_bar form button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

#compose_bar form button:disabled:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(194, 201, 203, 0.8);
	opacity: 0.5;
}

#compose_bar form button img {
	width: 20px;
	height: 20px;
}

#compose_bar form .send-button {
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 30px;
	border-radius: 5px;
	opacity: 1;
	background: #0f0;
	border: 1px solid #0f0;
	box-shadow: 0 0 5px #0f07;
	filter: drop-shadow(0px -1px 30px #0f05);
}

#compose_bar form .send-button:hover {
	background: #0f0;
	border-color: #0f0;
	opacity: 1;
	filter: drop-shadow(0px -1px 35px #0f07);
}

/* Textarea styles */
#compose_bar form textarea {
	width: 100%;
	padding: 16px 120px 16px 24px;
	font-size: 16px;
	background-color: #000;
	color: #c2c9cb;
	border: none;
	box-shadow: 0 0 20px 5px rgba(18, 26, 33, 0.7) inset;
	outline: none;
	resize: none;
	min-height: 52px;
	max-height: 150px;
	line-height: 1.4;
	transition: all 0.2s ease;
}

#compose_bar form textarea:focus {
	background: rgba(0, 0, 0, 0.8);
	border-color: cyan;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

#compose_bar form textarea::placeholder {
    color: rgba(194, 201, 203, 0.4);
}

/* Ghost text */

#compose_bar form .ghost-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 16px 60px 16px 24px;
	color: rgba(194, 201, 203, 0.4);
	pointer-events: none;
	font-size: 16px;
	display: flex;
	align-items: center;
	font-family: inherit;
}

#compose_bar #toolbar {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

#compose_bar #toolbar .leftside, #compose_bar #toolbar .rightside {
	display: flex;
	align-items: center;
}

button.indicator {
	display: flex;
	height: 32px;
	min-width: 32px;
	justify-content: center;
	align-items: center;
	margin: 4px;
	margin-bottom: 12px;
	border-radius: 6px;
	border: 0;
	padding: 0 8px;
	gap: 8px;
	opacity: 0.1;
}

#compose_bar #toolbar .rightside .toolbar-status-indicator {
	display: flex;
	height: 32px;
	align-items: center;
	margin: 4px;
	margin-bottom: 12px;
	padding: 0 12px;
}

.response-status-indicator {
	display: inline-flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

button.indicator.active {
	opacity: 1;
}

button.indicator img, button[data-indicator="attachment_btn"] img {
	height: 16px;
	width: 16px;
	flex-shrink: 0;
}

button.indicator span {
	white-space: nowrap;
	color: #000;
	font-size: 14px;
}
button[data-indicator="toolcall_btn"] {
	animation: none;
	transition: filter 180ms ease, box-shadow 180ms ease;
}

button[data-indicator="toolcall_btn"] span.tool-indicator-label {
	display: inline-block;
	overflow: hidden;
	max-width: 0;
	opacity: 0;
	white-space: nowrap;
	transition: max-width 240ms ease, opacity 150ms linear;
}

button[data-indicator="toolcall_btn"].label-expanding span.tool-indicator-label {
	max-width: var(--tool-indicator-target-width, 140px);
}

button[data-indicator="toolcall_btn"].label-visible span.tool-indicator-label {
	opacity: 1;
}

button[data-indicator="toolcall_btn"].deactivating {
	animation: flicker 900ms linear;
}

button[data-indicator="toolcall_btn"].deactivating span.tool-indicator-label {
	opacity: 0;
}

button[data-indicator="attachment_btn"] {
	background-color: #f0f9;
	box-shadow: none;
	filter: drop-shadow(0px -1px 30px #f0f0);
	border: 2px solid #c0f;
	height: 32px;
	width: 32px;
}

button span {
	padding-left: 8px;
}


 #compose_bar #toolbar.rightside [data-indicator="domain"] span {
	padding-left: 8px;
}

/* ========================================
   CRITICAL IMPORTS FROM OLDSTYLES
   ======================================== */

/* Animation Keyframes */
@keyframes bubble-up {
    from {
        opacity: 0.3;
        transform: translateY(60px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes woosh-out {
    from {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateY(-80px) scale(0.9);
        filter: blur(15px);
    }
}

/* Preserve horizontal centering during exit for #response_box */
@keyframes woosh-out-centered {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-80px) scale(0.9);
        filter: blur(15px);
    }
}

@keyframes fade-complex {
    0% { opacity: 1; }
    60% { opacity: 0.17; }
    80% { opacity: 0.17; }
    88% { opacity: 0.22; }
    90% { opacity: 0.16; }
    92% { opacity: 0.19; }
    94% { opacity: 0.15; }
    96% { opacity: 0.18; }
    98% { opacity: 0.12; }
    100% { opacity: 0.1; }
}

@keyframes flicker {
    0% { opacity: 0.1; }
    8% { opacity: 0.6; }
    12% { opacity: 0.1; }
    20% { opacity: 0.1; }
    25% { opacity: 0.7; }
    30% { opacity: 0.1; }
    40% { opacity: 0.1; }
    45% { opacity: 0.8; }
    50% { opacity: 0.1; }
    60% { opacity: 0.7; }
    65% { opacity: 0.1; }
    70% { opacity: 0.8; }
    75% { opacity: 0.1; }
    80% { opacity: 0.8; }
    85% { opacity: 0.1; }
    90% { opacity: 0.8; }
    95% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes shake {
    0%, 90% { transform: rotate(0deg); }
    92% { transform: rotate(-5deg); }
    94% { transform: rotate(5deg); }
    96% { transform: rotate(-5deg); }
    98% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

/* Response animations */
#response_box.exiting {
    /* Use centered variant to retain translateX(-50%) */
    animation: woosh-out-centered 1.0s ease-out forwards;
    will-change: transform, opacity, filter;
}

/* Per-block entry animation for streaming content */
#response_box .response-block {
    animation: bubble-up 0.5s ease-out both;
    will-change: transform, opacity, filter;
}

/* Hide scrollbars temporarily during entry animations */
#response_box.no-scroll {
    overflow: hidden !important;
    -ms-overflow-style: none;     /* IE and old Edge */
    scrollbar-width: none;        /* Firefox */
}
#response_box.no-scroll::-webkit-scrollbar { /* WebKit */
    display: none;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: -1;
}

#loading-screen.active {
    opacity: 1;
}

.ascii-container {
    width: 100%;
    text-align: center;
    color: rgba(193, 209, 214, 0.8);
}

.ascii-char {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.05s ease;
}

.ascii-char.visible {
    opacity: 1;
}

/* Message Projectile for Send Animation */
.message-projectile {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: 100%;
    font-size: 15px;
    color: #c1d1d6;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    will-change: transform, opacity;
    padding: 16px 60px 16px 24px;
    display: flex;
    align-items: center;
    opacity: 0;
    text-align: left;
}

/* Attachment Popover Styles */
.attachment-container {
    position: relative;
    display: flex;
    align-items: center;
}

.attachment-popover {
    min-width: 280px;
}

.attachment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.attachment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.attachment-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.attachment-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.attachment-item-name {
    flex: 1;
    color: rgba(193, 209, 214, 0.8);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attachment-item-remove {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: rgba(193, 209, 214, 0.8);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1;
}

.attachment-item-remove:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(193, 209, 214, 0.4);
}

.attachment-actions {
    display: flex;
    gap: 8px;
}

.attachment-add-btn {
    flex: 1;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: transparent;
    color: rgba(193, 209, 214, 0.8);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.attachment-add-btn:hover {
    background: #0f0;
    color: #04000b;
    border-color: #0f0;
}

button[data-indicator="attachment_btn"].has-attachment {
    opacity: 1;
    background-color: #f0ff;
    filter: drop-shadow(0px -1px 35px #f0f5);
    width: auto;
}

/* Base Popover Styles */
.popover {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: #04000b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.popover.active {
    opacity: 1;
    pointer-events: auto;
}

.popover::after,
.popover::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.popover::after {
    border: 8px solid transparent;
    border-top-color: #04000b;
}

.popover::before {
    border: 9px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.2);
    top: calc(100% + 1px);
}

.popover-close {
    background: transparent;
    border: none;
    color: rgba(193, 209, 214, 0.8);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.popover-close:hover {
    color: #c1d1d6;
}

.popover-header {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: rgba(193, 209, 214, 0.8);
}

/* Queue/Retry Popover Styles */
.retry-popover {
    /* Inherits all base popover styles */
}

.retry-popover.active {
    /* Inherits active state */
}


.queue-message {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.queue-message:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.queue-message-text {
    font-size: 13px;
    color: rgba(193, 209, 214, 0.8);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.queue-message-time {
    font-size: 11px;
    color: rgba(193, 209, 214, 0.4);
    margin-bottom: 8px;
}

.queue-message-actions {
    display: flex;
    gap: 8px;
}

.queue-send-btn, .queue-remove-btn {
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: transparent;
    color: rgba(193, 209, 214, 0.8);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.queue-send-btn:hover {
    background: #0f0;
    color: #04000b;
    border-color: #0f0;
}

.queue-remove-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(193, 209, 214, 0.4);
}

.queue-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 4px;
}

.retry-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 32px;
    min-width: 32px;
    padding: 0 12px;
    margin: 4px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 0;
    background-color: #f00;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    opacity: 1;
}

.retry-indicator:hover {
    background-color: #ff3333;
}

.retry-indicator.hidden {
    display: none !important;
}

.retry-count {
    line-height: 1;
    margin-right: 6px;
}

.retry-indicator img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Tool/Workflow Indicator Animations */
.tool-indicator:not(.active), .workflow-indicator:not(.active) {
    animation: fade-complex 3s ease forwards;
}


@media (max-width: 768px) {
	body {
		font-size: 16px;
	}

	nav {
		padding: 16px 12px;
	}

	nav button {
		padding: 8px;
	}

	#response_box {
		left: 12px;
		right: 12px;
		top: 112px;
		width: 83vw;
        margin: 0 auto;
		transform: none;
		max-height: calc(100vh - 220px);
      
	}

	#compose_bar {
		left: 12px;
		right: 12px;
		bottom: 16px;
		width: auto;
		transform: none;
		align-items: stretch;
		gap: 12px;
	}

	#compose_bar form {
		border-radius: 10px;
	}

	#compose_bar form textarea,
	#compose_bar form .ghost-text,
	.message-projectile {
		padding: 14px 80px 14px 16px;
	}

	#compose_bar form textarea {
		font-size: 14px;
		min-height: 48px;
	}

	#compose_bar #toolbar {
		flex-wrap: wrap;
		gap: 8px;
		justify-content: flex-start;
	}

	#compose_bar #toolbar .leftside,
	#compose_bar #toolbar .rightside {
		flex-wrap: wrap;
		align-items: center;
	}

	button.indicator {
		margin-bottom: 8px;
		background: transparent;
		-webkit-backface-visibility: hidden;
		-webkit-transform: translateZ(0);
	}

	.retry-popover {
		min-width: clamp(220px, 85vw, 320px);
		left: 50%;
		transform: translateX(-50%);
	}

	.attachment-preview {
		left: 12px;
		right: 12px;
	}
}

/* ========================================
   Onload History Entry (ported from oldstyles)
   - Dark, blurred intro content that resolves on hover
   ======================================== */

/* Old onload pattern */
#session-header {
    display: block;
    color: #c2c9cb0a;
    font-weight: 400;
    margin-bottom: 16px;
}

#session-header + div {
    color: #c2c9cb4a;
    filter: blur(1.5px);
    transition: color 1s ease, filter 1s ease;
    text-align: justify;
}

#session-header + div:hover {
    color: rgba(194, 201, 203, 0.688);
    filter: blur(0px);
}

/* Light theme tweaks */
[data-theme="light"] #session-header {
    color: rgba(26, 27, 28, 0.04);
}
[data-theme="light"] #session-header + div {
    color: rgba(26, 27, 28, 0.29);
}

/* Current UI welcome message uses this id */
#welcome-message {
    color: #c2c9cb4a;
    filter: blur(1.5px);
    transition: color 1s ease, filter 1s ease;
}
#welcome-message:hover {
    color: rgba(194, 201, 203, 0.688);
    filter: blur(0px);
}
[data-theme="light"] #welcome-message {
    color: rgba(26, 27, 28, 0.29);
}
