/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-tb60b0lkgk] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-tb60b0lkgk] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-onplvw2hah],
.components-reconnect-repeated-attempt-visible[b-onplvw2hah],
.components-reconnect-failed-visible[b-onplvw2hah],
.components-pause-visible[b-onplvw2hah],
.components-resume-failed-visible[b-onplvw2hah],
.components-rejoining-animation[b-onplvw2hah] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-retrying[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-failed[b-onplvw2hah],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-onplvw2hah] {
    display: block;
}


#components-reconnect-modal[b-onplvw2hah] {
    width: min(420px, calc(100vw - 32px));
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    color: #f6f4ff;
    background: linear-gradient(145deg, #29213f, #171426 75%);
    box-shadow: 0 28px 90px rgba(14, 9, 31, .42), 0 0 0 1px rgba(255,255,255,.04) inset;
    opacity: 0;
    overflow: hidden;
    transition: display .35s allow-discrete, overlay .35s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-onplvw2hah .35s both;
}

#components-reconnect-modal[open][b-onplvw2hah] {
    animation: components-reconnect-modal-slideUp-b-onplvw2hah .55s cubic-bezier(.16, 1, .3, 1), components-reconnect-modal-fadeInOpacity-b-onplvw2hah .35s ease-out;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-onplvw2hah]::backdrop {
    background: rgba(13, 10, 24, .64);
    backdrop-filter: blur(9px);
    animation: components-reconnect-modal-fadeInOpacity-b-onplvw2hah .35s ease-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-onplvw2hah {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-onplvw2hah {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-onplvw2hah {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-onplvw2hah] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 36px 30px 30px;
}

.components-reconnect-container[b-onplvw2hah]::before {
    content: "VIZION";
    color: #aaa0ff;
    font: 700 10px/1 'Space Grotesk', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

#components-reconnect-modal p[b-onplvw2hah] {
    margin: 0;
    text-align: center;
    color: #cbc7dc;
    font: 500 14px/1.6 'DM Sans', sans-serif;
}

#components-reconnect-modal button[b-onplvw2hah] {
    border: 0;
    background: #7867ff;
    color: white;
    padding: 11px 28px;
    border-radius: 12px;
    font: 700 13px 'DM Sans', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(120, 103, 255, .3);
    transition: transform .2s ease, background .2s ease;
}

#components-reconnect-modal button:hover[b-onplvw2hah] { background: #8d80ff; transform: translateY(-1px); }
#components-reconnect-modal button:focus-visible[b-onplvw2hah] { outline: 3px solid rgba(177, 168, 255, .6); outline-offset: 3px; }

    #components-reconnect-modal button:active[b-onplvw2hah] {
        background-color: #6758e8;
    }

.components-rejoining-animation[b-onplvw2hah] {
    position: relative;
    width: 72px;
    height: 72px;
}

    .components-rejoining-animation div[b-onplvw2hah] {
        position: absolute;
        border: 3px solid #8f83ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-onplvw2hah 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-onplvw2hah] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-onplvw2hah {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
/* /Components/Pages/VideoStudio.razor.rz.scp.css */
.video-studio-workspace[b-tlh5uv3fc5] {
	display: grid;
	grid-template-columns: minmax(320px,440px) 1fr;
	gap: 24px;
	align-items: stretch
}

.video-source-panel[b-tlh5uv3fc5], .video-settings-panel[b-tlh5uv3fc5], .video-preview-card[b-tlh5uv3fc5] {
	padding: 24px;
	border-radius: 20px
}

.video-source-panel[b-tlh5uv3fc5] {
	height: 100%;
	display: flex;
	flex-direction: column
}

.video-section-title[b-tlh5uv3fc5] {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 18px
}

	.video-section-title h2[b-tlh5uv3fc5] {
		margin: 0;
		font-size: 20px
	}

	.video-section-title p[b-tlh5uv3fc5] {
		margin: 4px 0 0;
		color: #8a8796;
		font-size: 13px
	}

	.video-section-title .creative-icon[b-tlh5uv3fc5] {
		flex: none
	}

.video-source-grid[b-tlh5uv3fc5] {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 10px;
	flex: 1;
	min-height: 360px;
	max-height: none;
	overflow: auto;
	padding: 2px
}

.video-source-item[b-tlh5uv3fc5] {
	border: 1px solid #ebe9f3;
	background: #fbfaff;
	border-radius: 12px;
	padding: 6px;
	text-align: left;
	cursor: pointer;
	min-width: 0
}

	.video-source-item.selected[b-tlh5uv3fc5] {
		border-color: #5740ee;
		box-shadow: 0 0 0 2px #5740ee18;
		background: #f5f2ff
	}

	.video-source-item img[b-tlh5uv3fc5] {
		display: block;
		width: 100%;
		aspect-ratio: 3/4;
		object-fit: cover;
		border-radius: 8px;
		background: #f0eff5
	}

	.video-source-item span[b-tlh5uv3fc5] {
		display: block;
		padding: 7px 2px 3px
	}

	.video-source-item strong[b-tlh5uv3fc5], .video-source-item small[b-tlh5uv3fc5] {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap
	}

	.video-source-item strong[b-tlh5uv3fc5] {
		font-size: 11px;
		color: #383445
	}

	.video-source-item small[b-tlh5uv3fc5] {
		font-size: 10px;
		color: #9a96a7;
		margin-top: 2px
	}

.video-empty-sources[b-tlh5uv3fc5] {
	min-height: 150px;
	border: 1px dashed #dedbea;
	border-radius: 14px;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 8px;
	color: #9a96a7;
	font-size: 13px
}

	.video-empty-sources i[b-tlh5uv3fc5] {
		font-size: 28px;
		color: #bbb5cf
	}

.video-upload-zone[b-tlh5uv3fc5] {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	border: 1px dashed #d7d3e5;
	border-radius: 14px;
	padding: 14px;
	cursor: pointer;
	transition: border-color .2s ease,background-color .2s ease,box-shadow .2s ease,transform .2s ease
}

	.video-upload-zone:hover[b-tlh5uv3fc5], .video-upload-zone:focus-within[b-tlh5uv3fc5] {
		border-color: #8d7ff4;
		background: #faf9ff;
		box-shadow: 0 8px 20px #5740ee18;
		transform: translateY(-1px)
	}

	.video-upload-zone.has-file[b-tlh5uv3fc5] {
		border-color: #5740ee;
		background: #faf9ff
	}

	.video-upload-zone > i[b-tlh5uv3fc5] {
		color: #5740ee;
		font-size: 20px;
		transition: transform .2s ease
	}

	.video-upload-zone:hover > i[b-tlh5uv3fc5], .video-upload-zone:focus-within > i[b-tlh5uv3fc5] {
		transform: translateY(-2px)
	}

	.video-upload-zone strong[b-tlh5uv3fc5], .video-upload-zone span[b-tlh5uv3fc5] {
		display: block
	}

	.video-upload-zone strong[b-tlh5uv3fc5] {
		font-size: 13px;
		color: #4b4658
	}

	.video-upload-zone span[b-tlh5uv3fc5] {
		font-size: 11px;
		color: #9a96a7;
		margin-top: 2px
	}

	.video-upload-zone[b-tlh5uv3fc5]  input {
		position: absolute;
		inset: 0;
		opacity: 0;
		cursor: pointer
	}

.video-frame-summary[b-tlh5uv3fc5] {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #5a5668;
	font-size: 12px;
	margin-top: 12px
}

	.video-frame-summary > i[b-tlh5uv3fc5] {
		color: #35a66f
	}

	.video-frame-summary .clear-upload[b-tlh5uv3fc5] {
		margin-left: auto
	}

.video-scene-grid[b-tlh5uv3fc5] {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 9px;
	margin: 8px 0 20px
}

.video-scene-card[b-tlh5uv3fc5] {
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
	border: 1px solid #e8e5f0;
	background: #fff;
	border-radius: 12px;
	padding: 11px;
	cursor: pointer;
	min-height: 64px
}

	.video-scene-card:hover[b-tlh5uv3fc5] {
		border-color: #bcb4ee
	}

	.video-scene-card.selected[b-tlh5uv3fc5] {
		border-color: #5740ee;
		background: #f7f5ff;
		box-shadow: 0 0 0 2px #5740ee14
	}

	.video-scene-card > i[b-tlh5uv3fc5] {
		width: 28px;
		text-align: center;
		color: #5740ee;
		font-size: 17px
	}

	.video-scene-card strong[b-tlh5uv3fc5], .video-scene-card small[b-tlh5uv3fc5] {
		display: block
	}

	.video-scene-card strong[b-tlh5uv3fc5] {
		font-size: 12px;
		color: #383445
	}

	.video-scene-card small[b-tlh5uv3fc5] {
		font-size: 10px;
		color: #9995a5;
		margin-top: 3px;
		line-height: 1.3
	}

.video-choice-row[b-tlh5uv3fc5] {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.video-segmented[b-tlh5uv3fc5] {
	display: flex;
	gap: 5px
}

	.video-segmented button[b-tlh5uv3fc5] {
		border: 1px solid #dedbe9;
		background: #fff;
		color: #746f82;
		border-radius: 8px;
		padding: 8px 11px;
		font-size: 12px;
		cursor: pointer
	}

		.video-segmented button.selected[b-tlh5uv3fc5] {
			border-color: #5740ee;
			background: #5740ee;
			color: #fff
		}

.video-cost-strip[b-tlh5uv3fc5] {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid #eeecf3;
	border-bottom: 1px solid #eeecf3;
	margin: 20px 0;
	padding: 13px 0;
	color: #777285;
	font-size: 12px
}

	.video-cost-strip i[b-tlh5uv3fc5] {
		color: #5740ee;
		margin-right: 5px
	}

	.video-cost-strip strong[b-tlh5uv3fc5] {
		color: #393445
	}

.video-prompt-heading[b-tlh5uv3fc5] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px
}

	.video-prompt-heading .field-label[b-tlh5uv3fc5] {
		margin-bottom: 0
	}

	.video-prompt-heading .secondary-button[b-tlh5uv3fc5] {
		margin: 0;
		padding: 8px 12px;
		font-size: 12px
	}

.video-prompt[b-tlh5uv3fc5] {
	min-height: 190px;
	resize: vertical;
	line-height: 1.5;
	margin-top: 8px
}

	.video-prompt:disabled[b-tlh5uv3fc5] {
		background: #f7f6fb;
		color: #8a8796;
		cursor: wait;
		opacity: .75
	}

.video-generate[b-tlh5uv3fc5] {
	width: 100%;
	margin-top: 18px
}

.video-preview-card[b-tlh5uv3fc5] {
	margin-top: 24px;
	min-height: 480px
}

.video-result[b-tlh5uv3fc5] {
	max-width: 640px;
	margin: 20px auto 0
}

	.video-result video[b-tlh5uv3fc5] {
		display: block;
		width: 100%;
		max-height: 620px;
		border-radius: 14px;
		background: #15131d
	}

	.video-result > div[b-tlh5uv3fc5] {
		display: flex;
		justify-content: space-between;
		gap: 12px;
		margin-top: 12px;
		color: #8b8797;
		font-size: 12px
	}

	.video-result strong[b-tlh5uv3fc5] {
		color: #34303f
	}

.video-preview-card .preview-empty[b-tlh5uv3fc5] {
	min-height: 360px
}

@media(max-width:1000px) {
	.video-studio-workspace[b-tlh5uv3fc5] {
		grid-template-columns: 1fr
	}

	.video-source-panel[b-tlh5uv3fc5] {
		height: auto
	}

	.video-source-grid[b-tlh5uv3fc5] {
		flex: none;
		min-height: 0;
		max-height: 360px
	}

	.video-preview-card[b-tlh5uv3fc5] {
		min-height: 360px
	}
}

@media(max-width:560px) {
	.video-source-grid[b-tlh5uv3fc5] {
		grid-template-columns: repeat(2,minmax(0,1fr))
	}

	.video-scene-grid[b-tlh5uv3fc5], .video-choice-row[b-tlh5uv3fc5] {
		grid-template-columns: 1fr
	}

	.video-cost-strip[b-tlh5uv3fc5] {
		flex-direction: column
	}
}

.video-source-panel[b-tlh5uv3fc5] {
	height: 100%;
	align-self: stretch
}

.video-source-grid[b-tlh5uv3fc5] {
	height: auto;
	max-height: none;
	align-content: start
}

.video-source-item[b-tlh5uv3fc5] {
	position: relative
}

.video-source-index[b-tlh5uv3fc5] {
	position: absolute;
	top: 8px;
	right: 8px;
	display: grid;
	place-items: center;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: #5740ee;
	color: #fff;
	font-size: 10px
}

.video-frame-summary[b-tlh5uv3fc5] {
	min-width: 0
}

.video-frame-thumbnails[b-tlh5uv3fc5] {
	display: flex;
	gap: 5px;
	flex: none
}

	.video-frame-thumbnails img[b-tlh5uv3fc5] {
		width: 38px;
		height: 38px;
		object-fit: cover;
		border-radius: 7px;
		border: 1px solid #dcd8e9
	}

.video-source-item img[b-tlh5uv3fc5] {
	font-size: 0;
	color: transparent
}
