@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Components/Account/Pages/Login.razor.rz.scp.css */

.login-shell[b-fss6zqcsr2] {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 1.5rem;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(185, 28, 47, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 20%, rgba(244, 63, 94, 0.12) 0%, transparent 45%),
		var(--app-gradient);
	background-attachment: fixed;
}

.login-card[b-fss6zqcsr2] {
	width: min(460px, 100%);
	background: rgba(255, 255, 255, 0.94);
	border-radius: 24px;
	box-shadow:
		0 32px 80px rgba(20, 3, 8, 0.22),
		0 8px 24px rgba(185, 28, 47, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.7);
	position: relative;
	overflow: hidden;
	animation: loginIn-b-fss6zqcsr2 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
	backdrop-filter: blur(12px);
}

.login-card[b-fss6zqcsr2]::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #7a122a, #dc2626, #f43f5e, #dc2626, #7a122a);
	background-size: 200% 100%;
	animation: shimmerBar-b-fss6zqcsr2 3s linear infinite;
}

.login-card[b-fss6zqcsr2]::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(244, 63, 94, 0.08), transparent 70%);
	top: -100px;
	right: -80px;
	pointer-events: none;
}

.login-brand[b-fss6zqcsr2] {
	padding: 2.5rem 2.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}

.login-logo[b-fss6zqcsr2] {
	width: 160px;
	height: auto;
	filter: drop-shadow(0 6px 16px rgba(185, 28, 47, 0.25));
	animation: logoFade-b-fss6zqcsr2 0.8s ease both 0.15s;
}

.login-brand-text[b-fss6zqcsr2] {
	font-family: 'Bebas Neue', 'Sora', sans-serif;
	font-size: 1.75rem;
	letter-spacing: 0.22em;
	color: #7a122a;
	text-transform: uppercase;
	opacity: 0.9;
}

.login-body[b-fss6zqcsr2] {
	padding: 0 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.login-field[b-fss6zqcsr2] {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.login-label[b-fss6zqcsr2] {
	font-weight: 600;
	font-size: 0.875rem;
	color: #4a0d1c;
	letter-spacing: 0.02em;
}

.login-input[b-fss6zqcsr2] {
	border-radius: 12px;
	border: 1.5px solid #f0b7bf;
	padding: 0.8rem 1rem;
	background: #fff;
	font-size: 0.95rem;
	color: #1f0a0f;
	transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.login-input:focus[b-fss6zqcsr2] {
	border-color: #f43f5e;
	box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.15);
	transform: translateY(-1px);
	outline: none;
}

.login-input[b-fss6zqcsr2]::placeholder {
	color: #c4909a;
}

.login-submit[b-fss6zqcsr2] {
	background: linear-gradient(135deg, #dc2626, #b91c2f);
	border: none;
	border-radius: 12px;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.04em;
	padding: 0.9rem 1rem;
	box-shadow: 0 10px 30px rgba(185, 28, 47, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	cursor: pointer;
	margin-top: 0.25rem;
}

.login-submit:hover[b-fss6zqcsr2] {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(185, 28, 47, 0.4);
}

.login-submit:active[b-fss6zqcsr2] {
	transform: translateY(0);
	box-shadow: 0 6px 18px rgba(185, 28, 47, 0.3);
}

.login-footer[b-fss6zqcsr2] {
	padding: 1.25rem 2.5rem 1.75rem;
	text-align: center;
	color: #9b4054;
	font-size: 0.82rem;
	border-top: 1px solid rgba(185, 28, 47, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.login-validation[b-fss6zqcsr2] {
	margin-bottom: 0.25rem;
	text-align: center;
	font-size: 0.875rem;
}

@keyframes loginIn-b-fss6zqcsr2 {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes logoFade-b-fss6zqcsr2 {
	from { opacity: 0; transform: scale(0.9); }
	to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmerBar-b-fss6zqcsr2 {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

@media (max-width: 640px) {
	.login-brand[b-fss6zqcsr2] {
		padding: 2rem 1.75rem 1.25rem;
	}

	.login-body[b-fss6zqcsr2] {
		padding: 0 1.75rem 1.75rem;
	}

	.login-footer[b-fss6zqcsr2] {
		padding: 1rem 1.75rem 1.5rem;
	}
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-cjck3dpgug] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-cjck3dpgug] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ── Sidebar ── */
.sidebar[b-cjck3dpgug] {
    background: var(--drawer-gradient);
    box-shadow: 12px 0 40px rgba(20, 3, 8, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.sidebar[b-cjck3dpgug]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 10%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 90%, rgba(244,63,94,0.08) 0%, transparent 45%);
    pointer-events: none;
}

/* ── Top Row ── */
.top-row[b-cjck3dpgug] {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(185, 28, 47, 0.1);
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 4px 24px rgba(20, 3, 8, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.top-row-left[b-cjck3dpgug] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-breadcrumb[b-cjck3dpgug] {
    font-family: 'Bebas Neue', 'Sora', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: #7a122a;
    opacity: 0.7;
    text-transform: uppercase;
}

.top-row-right[b-cjck3dpgug] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.top-row[b-cjck3dpgug]  a,
.top-row[b-cjck3dpgug]  .btn-link {
    color: #4a0d1c;
    white-space: nowrap;
    text-decoration: none;
    font-size: 0.875rem;
}

.top-row[b-cjck3dpgug]  a:hover,
.top-row[b-cjck3dpgug]  .btn-link:hover {
    text-decoration: underline;
}

/* ── Top bar user chip ── */
.top-user[b-cjck3dpgug] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(185, 28, 47, 0.08);
    border: 1px solid rgba(185, 28, 47, 0.15);
    border-radius: 999px;
    padding: 0.25rem 0.75rem 0.25rem 0.25rem;
    animation: userChipIn-b-cjck3dpgug 0.4s ease both 0.1s;
}

.top-user-avatar[b-cjck3dpgug] {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #dc2626, #7a122a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.top-user-name[b-cjck3dpgug] {
    font-size: 0.83rem;
    font-weight: 600;
    color: #4a0d1c;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Content area ── */
article.content[b-cjck3dpgug] {
    animation: contentFade-b-cjck3dpgug 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    padding-top: 1.25rem;
    flex: 1;
}

/* ── Error UI ── */
#blazor-error-ui[b-cjck3dpgug] {
    color-scheme: light only;
    background: #fef2f2;
    border-top: 2px solid #f43f5e;
    color: #7f1d1d;
    bottom: 0;
    box-shadow: 0 -4px 16px rgba(244, 63, 94, 0.15);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.65rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-size: 0.875rem;
}

#blazor-error-ui .dismiss[b-cjck3dpgug] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ── Animations ── */
@keyframes contentFade-b-cjck3dpgug {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes userChipIn-b-cjck3dpgug {
    from { opacity: 0; transform: scale(0.9) translateX(8px); }
    to   { opacity: 1; transform: scale(1) translateX(0); }
}

/* ── Responsive ── */
@media (max-width: 640.98px) {
    .top-row[b-cjck3dpgug] {
        justify-content: space-between;
    }

    .top-breadcrumb[b-cjck3dpgug] { display: none; }
    .top-user-name[b-cjck3dpgug]  { display: none; }
}

@media (min-width: 641px) {
    .page[b-cjck3dpgug] {
        flex-direction: row;
    }

    .sidebar[b-cjck3dpgug] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }

    .top-row[b-cjck3dpgug] {
        position: sticky;
        top: 0;
    }

    .top-row[b-cjck3dpgug],
    article[b-cjck3dpgug] {
        padding-left: 2rem !important;
        padding-right: 1.75rem !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Container: full height flex column ── */
.nav-container[b-z2fuhd0tew] {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* ── Sidebar Logo / Brand ── */
.sidebar-logo[b-z2fuhd0tew] {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(222, 0, 88, 0.05);
    border-bottom: 1px solid rgba(222, 0, 88, 0.1);
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.sidebar-logo[b-z2fuhd0tew]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(222, 0, 88, 0.5), transparent);
}

.sidebar-logo img[b-z2fuhd0tew] {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.sidebar-logo:hover img[b-z2fuhd0tew] {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 16px rgba(222, 0, 88, 0.3));
}

.sidebar-logo-text[b-z2fuhd0tew] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    white-space: nowrap;
}

/* ── Mobile toggle (hidden — hamburger is in NavBar) ── */
.navbar-toggler[b-z2fuhd0tew] {
    display: none;
}

/* ── Nav body: always visible ── */
.nav-body[b-z2fuhd0tew] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* ── Scrollable main nav ── */
.nav-scrollable[b-z2fuhd0tew] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0.85rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.nav-scrollable[b-z2fuhd0tew]::-webkit-scrollbar { width: 4px; }
.nav-scrollable[b-z2fuhd0tew]::-webkit-scrollbar-track { background: transparent; }
.nav-scrollable[b-z2fuhd0tew]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* ── Pinned footer ── */
.nav-footer[b-z2fuhd0tew] {
    flex-shrink: 0;
    padding: 0 0.85rem 1.25rem;
}

/* ── Section labels ── */
.nav-section-label[b-z2fuhd0tew] {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 0.6rem;
    margin-top: 0.25rem;
    margin-bottom: 0.3rem;
}

/* ── Divider ── */
.nav-divider[b-z2fuhd0tew] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0 0.75rem;
}

/* ── Icons ── */
.nav-icon[b-z2fuhd0tew] {
    display: inline-block;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    background-size: cover;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.bi-house-door-fill-nav-menu[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-speedometer2[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-1 0V4.5A.5.5 0 0 1 8 4M3.732 5.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707M2 10a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 10m9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5m.754-4.246a.39.39 0 0 0-.527-.02L7.547 9.31a.91.91 0 1 0 1.302 1.258l3.434-4.297a.39.39 0 0 0-.029-.518z'/%3E%3Cpath fill-rule='evenodd' d='M0 10a8 8 0 1 1 15.547 2.661c-.442 1.253-1.845 1.602-2.932 1.25C11.309 13.488 9.475 13 8 13c-1.474 0-3.31.488-4.615.911-1.087.352-2.49.003-2.932-1.25A8 8 0 0 1 0 10m8-7a7 7 0 0 0-6.603 9.329c.203.575.923.876 1.68.63C4.397 12.533 6.358 12 8 12s3.604.532 4.923.96c.757.245 1.477-.056 1.68-.631A7 7 0 0 0 8 3'/%3E%3C/svg%3E");
}

.bi-graph-up-arrow[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 0h1v15h15v1H0zm10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V4.9l-3.613 4.417a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61L13.445 4H10.5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

.bi-bar-chart-fill[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm5-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm5-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
}

.bi-stack[b-z2fuhd0tew] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.6.6 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.6.6 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.6.6 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535z'/%3E%3Cpath d='m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.6.6 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0z'/%3E%3C/svg%3E");
}

/* ── Nav items ── */
.nav-item[b-z2fuhd0tew] {
    font-size: 1.05rem;
    padding-bottom: 0.25rem;
    animation: navItemIn-b-z2fuhd0tew 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--nav-index, 0) * 0.04s);
}

.nav-item[b-z2fuhd0tew]  .nav-link {
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    height: 3.3rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0 1rem;
    width: 100%;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
    position: relative;
}

.nav-item[b-z2fuhd0tew]  .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    height: 64%;
    width: 3px;
    background: #f43f5e;
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item[b-z2fuhd0tew]  a.active {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-item[b-z2fuhd0tew]  a.active::before {
    transform: scaleY(1);
}

.nav-item[b-z2fuhd0tew]  .nav-link:hover {
    background: rgba(255, 255, 255, 0.09);
    color: white;
    transform: translateX(3px);
}

.nav-item[b-z2fuhd0tew]  .nav-link:hover .nav-icon { opacity: 1; }

.nav-item[b-z2fuhd0tew]  small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 500;
}

.nav-text[b-z2fuhd0tew] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── Logout button ── */
.nav-item-logout[b-z2fuhd0tew]  .nav-logout-btn {
    color: rgba(255, 160, 160, 0.85) !important;
    background: rgba(244, 63, 94, 0.07) !important;
    border-color: rgba(244, 63, 94, 0.15) !important;
}

.nav-item-logout[b-z2fuhd0tew]  .nav-logout-btn:hover {
    background: rgba(244, 63, 94, 0.16) !important;
    color: #fca5a5 !important;
    border-color: rgba(244, 63, 94, 0.28) !important;
    transform: translateX(3px);
}

/* ── Animation ── */
@keyframes navItemIn-b-z2fuhd0tew {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Mobile-only close button ── */
.nav-mobile-close[b-z2fuhd0tew] {
    display: none; /* hidden on desktop/tablet */
}

@media (max-width: 767.98px) {
    .nav-mobile-close[b-z2fuhd0tew] {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0.6rem;
        right: 0.6rem;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        cursor: pointer;
        z-index: 10;
        transition: background 0.18s ease, color 0.18s ease;
        flex-shrink: 0;
    }

    .nav-mobile-close:hover[b-z2fuhd0tew] {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
    }

    /* Ensure nav-container is position:relative for absolute close btn */
    .nav-container[b-z2fuhd0tew] {
        position: relative;
    }
}

/* /Components/Pages/CulturePicker.razor.rz.scp.css */
.culture-picker-wrap[b-mft8h3mq8q] {
    display: flex;
    align-items: center;
}

.culture-select[b-mft8h3mq8q] {
    appearance: none;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(185, 28, 47, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a0d1c;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    min-width: 72px;
}

.culture-select:hover[b-mft8h3mq8q] {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(185, 28, 47, 0.4);
}

.culture-select:focus[b-mft8h3mq8q] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(185, 28, 47, 0.15);
    border-color: #b91c2f;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-dashboard[b-uvqc48fe6t] {
    padding: 2rem 0 2rem;
    animation: dashboardFade-b-uvqc48fe6t 0.55s ease both;
}

.home-hero[b-uvqc48fe6t] {
    display: flex;
    align-items: center;
    gap:3rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(185, 28, 47, 0.12);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(20, 3, 8, 0.08);
    backdrop-filter: blur(8px);
}

.hero-logo[b-uvqc48fe6t] {
    width: 280px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(185, 28, 47, 0.2));
}

.home-hero-text[b-uvqc48fe6t] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.home-greeting[b-uvqc48fe6t] {
    font-size: 2rem;
    font-weight: 700;
    color: #1f0a0f;
    margin: 0;
    line-height: 1.2;
}

.home-username[b-uvqc48fe6t] {
    color: #b91c2f;
}

.home-subtitle[b-uvqc48fe6t] {
    color: #6b3040;
    font-size: 0.95rem;
    margin: 0;
}

/* ── Hero right: date & time ── */
.hero-datetime[b-uvqc48fe6t] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    gap: 0.2rem;
}

.hero-date[b-uvqc48fe6t] {
    font-size: 0.8rem;
    color: #6b3040;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-time[b-uvqc48fe6t] {
    font-size: 2rem;
    font-weight: 700;
    color: #b91c2f;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

/* ── Cards ── */
.home-cards[b-uvqc48fe6t] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.home-card[b-uvqc48fe6t] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(185, 28, 47, 0.1);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    color: #1f0a0f;
    min-height: 160px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 4px 16px rgba(20, 3, 8, 0.07);
    animation: cardIn-b-uvqc48fe6t 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--card-index, 1) * 0.08s);
    position: relative;
    overflow: hidden;
}

.home-card[b-uvqc48fe6t]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f43f5e, #b91c2f);
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transition: transform 0.22s ease;
}

.home-card:hover[b-uvqc48fe6t] {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(20, 3, 8, 0.14);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(185, 28, 47, 0.25);
    color: #1f0a0f;
    text-decoration: none;
}

.home-card:hover[b-uvqc48fe6t]::before {
    transform: scaleY(1);
}

.home-card-icon[b-uvqc48fe6t] {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #ffeef1, #ffd0d7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b91c2f;
    flex-shrink: 0;
    align-self: flex-start;
    transition: background 0.22s ease, transform 0.22s ease;
}

.home-card:hover .home-card-icon[b-uvqc48fe6t] {
    background: linear-gradient(135deg, #b91c2f, #dc2626);
    color: #fff;
    transform: scale(1.08);
}

.home-card-body[b-uvqc48fe6t] {
    flex: 1;
}

.home-card-body h4[b-uvqc48fe6t] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.3rem;
    color: #1f0a0f;
}

.home-card-body p[b-uvqc48fe6t] {
    font-size: 0.82rem;
    color: #6b3040;
    margin: 0;
}

.home-card-arrow[b-uvqc48fe6t] {
    font-size: 1.5rem;
    color: #c4909a;
    line-height: 1;
    align-self: flex-end;
    transition: transform 0.22s ease, color 0.22s ease;
    font-weight: 300;
}

.home-card:hover .home-card-arrow[b-uvqc48fe6t] {
    transform: translateX(4px);
    color: #b91c2f;
}

@keyframes dashboardFade-b-uvqc48fe6t {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes cardIn-b-uvqc48fe6t {
    from { opacity: 0; transform: translateY(14px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
    .home-cards[b-uvqc48fe6t] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Tablet (641px – 900px): logo küçülür, saat görünür kalır ── */
@media (min-width: 641px) and (max-width: 900px) {
    .home-hero[b-uvqc48fe6t] {
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }

    .hero-logo[b-uvqc48fe6t] {
        width: 170px;
    }

    .hero-time[b-uvqc48fe6t] {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .home-hero[b-uvqc48fe6t] {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .home-greeting[b-uvqc48fe6t] {
        font-size: 1.5rem;
    }

    .hero-datetime[b-uvqc48fe6t] {
        align-items: center;
    }

    .home-cards[b-uvqc48fe6t] {
        grid-template-columns: 1fr;
    }
}

/* ══ Mekik Hızlı Görünüm Bölümü ══ */
.mekik-section[b-uvqc48fe6t] {
    margin-top: 2.5rem;
}

.mekik-section-header[b-uvqc48fe6t] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.mekik-section-icon[b-uvqc48fe6t] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b91c2f, #dc2626);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(185, 28, 47, 0.28);
}

.mekik-section-title[b-uvqc48fe6t] {
    font-size: 1rem;
    font-weight: 700;
    color: #1f0a0f;
    margin: 0;
    line-height: 1.2;
}

.mekik-section-sub[b-uvqc48fe6t] {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
    font-weight: 500;
}

.mekik-section-legend[b-uvqc48fe6t] {
    margin-left: auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mekik-legend-item[b-uvqc48fe6t] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
}

.mekik-legend-dot[b-uvqc48fe6t] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-aktif-legend[b-uvqc48fe6t] {
    background: #22c55e;
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}

.dot-pasif-legend[b-uvqc48fe6t] {
    background: #94a3b8;
}

/* ── Grid ── */
.mekik-grid[b-uvqc48fe6t] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 0.9rem;
}

/* ── Kart ── */
.mekik-card[b-uvqc48fe6t] {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    border: 1px solid rgba(185, 28, 47, 0.08);
    box-shadow: 0 3px 12px rgba(20, 3, 8, 0.06);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.mekik-card:hover[b-uvqc48fe6t] {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(20, 3, 8, 0.13);
    border-color: rgba(185, 28, 47, 0.2);
}

.mekik-card-aktif[b-uvqc48fe6t] {
    border-color: rgba(34, 197, 94, 0.2);
}

.mekik-card-aktif:hover[b-uvqc48fe6t] {
    border-color: rgba(34, 197, 94, 0.4);
}

/* ── Durum Çubuğu ── */
.mekik-card-status-bar[b-uvqc48fe6t] {
    padding: 0.38rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-aktif[b-uvqc48fe6t] {
    background: rgba(34, 197, 94, 0.09);
    color: #15803d;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.status-pasif[b-uvqc48fe6t] {
    background: rgba(148, 163, 184, 0.09);
    color: #64748b;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.mekik-status-dot[b-uvqc48fe6t] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-aktif[b-uvqc48fe6t] {
    background: #22c55e;
    animation: mekik-pulse-b-uvqc48fe6t 2.2s ease-in-out infinite;
}

.dot-pasif[b-uvqc48fe6t] {
    background: #94a3b8;
}

@keyframes mekik-pulse-b-uvqc48fe6t {
    0%, 100% { opacity: 1;    box-shadow: 0 0 3px rgba(34, 197, 94, 0.4); }
    50%       { opacity: 0.35; box-shadow: 0 0 9px rgba(34, 197, 94, 0.85); }
}

/* ── Kart İçeriği ── */
.mekik-card-body[b-uvqc48fe6t] {
    padding: 0.85rem 0.9rem 0.75rem;
    flex: 1;
}

.mekik-card-img-wrap[b-uvqc48fe6t] {
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.mekik-card-img[b-uvqc48fe6t] {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.mekik-card-aktif .mekik-card-img[b-uvqc48fe6t] {
    filter: drop-shadow(0 2px 5px rgba(34, 197, 94, 0.18));
    opacity: 1;
}

.mekik-card-pasif .mekik-card-img[b-uvqc48fe6t] {
    filter: grayscale(0.55) drop-shadow(0 2px 5px rgba(20, 3, 8, 0.08));
    opacity: 0.6;
}

.mekik-card-name[b-uvqc48fe6t] {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1f0a0f;
    text-align: center;
    margin-bottom: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── İstatistikler ── */
.mekik-card-stats[b-uvqc48fe6t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    width: 100%;
    min-width: 0;
}

.mekik-stat[b-uvqc48fe6t] {
    background: rgba(248, 249, 250, 0.9);
    border-radius: 8px;
    padding: 0.38rem 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.38rem;
    min-width: 0;
    overflow: hidden;
}

.mekik-stat-icon[b-uvqc48fe6t] {
    color: #b91c2f;
    font-size: 0.78rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.mekik-stat-lbl[b-uvqc48fe6t] {
    font-size: 0.6rem;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mekik-stat-val[b-uvqc48fe6t] {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f0a0f;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mekik-stat-val span[b-uvqc48fe6t] {
    font-size: 0.62rem;
    color: #9ca3af;
    font-weight: 500;
}

/* ── Footer ── */
.mekik-card-footer[b-uvqc48fe6t] {
    padding: 0.38rem 0.9rem;
    background: rgba(0, 0, 0, 0.025);
    border-top: 1px solid rgba(0, 0, 0, 0.045);
    font-size: 0.65rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.32rem;
    font-variant-numeric: tabular-nums;
}

/* ── Yükleme / Boş ── */
.mekik-loading[b-uvqc48fe6t] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.5rem;
    color: #6b7280;
    font-size: 0.88rem;
}

.mekik-empty[b-uvqc48fe6t] {
    padding: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.88rem;
}

@media (max-width: 640px) {
    .mekik-section-legend[b-uvqc48fe6t] {
        display: none;
    }

    .mekik-grid[b-uvqc48fe6t] {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 400px) {
    .mekik-grid[b-uvqc48fe6t] {
        grid-template-columns: 1fr;
    }
}
