/* /Components/Dialogs/AdminPanel/GenerateUserApiKey.razor.rz.scp.css */
.api-key[b-jphjozk8rf]{
    width: 100%;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;

    border: 1px solid #3d3d3d;
    border-radius: var(--border-radius);
}

.api-key-text[b-jphjozk8rf]{
    font-weight: 500;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
}

.api-key__button-copy[b-jphjozk8rf]{
    cursor: pointer;
}
/* /Components/UI/CustomPopover/CustomPopover.razor.rz.scp.css */
.custom-popover[b-3i5rfuwjp1] {
	position: relative;
	width: fit-content;
}

.custom-popover-toggle[b-3i5rfuwjp1] {
	background: transparent;
	cursor: pointer;

	font-size: 0.9rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.custom-popover-content[b-3i5rfuwjp1] {
	position: absolute;
	top: 100%;
	right: 0;

	background: white;
	border-radius: 4px;
	max-height: 300px;
	overflow-y: auto;
	z-index: 1000;

	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-top: 2px;

	opacity: 0;
	transform: translateY(-5px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;

	min-width: max-content;
	max-width: 300px; 
	white-space: normal;
}

.custom-popover.open .custom-popover-content[b-3i5rfuwjp1] {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
/* /Components/UI/DropdownTree/DropdownTree.razor.rz.scp.css */
.dropdown-tree[b-21dpraynbl] {
	position: relative;
}

.dropdown-toggle[b-21dpraynbl] {
	background: #f7f7f7;
	border-radius: var(--mcd-space-sm);
	border: 1px solid #e4e4e4;
	padding: 10px 14px;
	cursor: pointer;

	font-size: 1rem;
	overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dropdown-list[b-21dpraynbl] {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;

	background: white;
	border-radius: 4px;
	max-height: 300px;
	overflow-y: auto;
	z-index: 1000;

	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-top: 2px;

	opacity: 0;
	transform: translateY(-5px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-tree.open .dropdown-list[b-21dpraynbl] {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.dropdown-item-wrapper[b-21dpraynbl] {
	border-bottom: 1px solid #eee;
}

.dropdown-item[b-21dpraynbl] {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px;
	font-size: 0.8rem;

	opacity: 0;
	transform: translateX(-5px);
	animation: fadeInItem-b-21dpraynbl 0.2s forwards;

	svg {
		width: 1.25rem;
		height: 1.25rem;
	}
}

@keyframes fadeInItem-b-21dpraynbl {
	from {
		opacity: 0;
		transform: translateX(-5px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}


.dropdown-item:hover[b-21dpraynbl] {
	background-color: #f0f0f0;
}

.arrow[b-21dpraynbl] {
	margin-left: 8px;
	font-size: 0.8rem;
	color: #888;
}

.dropdown-item.back[b-21dpraynbl] {
	justify-content: flex-start;
	font-style: italic;
	color: var(--yellow-600);
	font-weight: bold;
	border-bottom: 1px solid #eee;

	svg {
		fill: var(--yellow-600);
	}
}

.dropdown-item.back:hover[b-21dpraynbl] {
	background-color: #f9fae6;
}
/* /Components/UI/ReasonForComplaintCards/ReasonForComplaintCards.razor.rz.scp.css */
/* /Components/UI/ShiftTable/ShiftTable.razor.rz.scp.css */
.container-wrapper[b-3iahhfc93a] {
	overflow-x: auto;
	height: 400px;
}

.container[b-3iahhfc93a] {
	height: inherit;
	display: grid;
	grid-template-columns: 120px repeat(8, 1fr) 60px;
	gap: 1px;
	justify-content: space-around;
}

.cell[b-3iahhfc93a] {
	display: flex;
	justify-content: center;
	align-items: center;

	background-color: transparent;
	padding: 5px;
	color: var(--black);
	text-align: center;
	border: 1px solid #ccc;
}

.header[b-3iahhfc93a],
.total[b-3iahhfc93a] {
	display: flex;
	justify-content: center;
	align-items: center;

	padding: 5px;
	background-color: var(--mcd-gold);
	color: var(--black);
	font-weight: bold;
	text-align: center;
}

.green-total[b-3iahhfc93a] {
	display: flex;
	justify-content: center;
	align-items: center;
	
	border: 1px solid #ccc;
	background-color: #DBFC4D;
	padding: 5px;
	color: var(--black);
	text-align: center;
	border: 1px solid #ccc;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-hc683k60wa] {
	position: relative;
	display: flex;
	flex-direction: column;
}

main[b-hc683k60wa] {
	flex: 1;
}

.sidebar[b-hc683k60wa] {
	background: var(--mcd-white);
	box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
}

.top-row[b-hc683k60wa] {
	background-color: var(--mcd-white);
	height: fit-content;
	
	border-radius: var(--mcd-space-md);

	box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);

	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	flex-wrap: wrap;

	margin: 1rem 1.5rem 0 1.5rem;
}

.top-row[b-hc683k60wa]  a,
.top-row[b-hc683k60wa]  .btn-link {
	white-space: nowrap;
	margin-left: 1.5rem;
	text-decoration: none;
}

.top-row[b-hc683k60wa]  a:hover,
.top-row[b-hc683k60wa]  .btn-link:hover {
	text-decoration: underline;
}

.top-row[b-hc683k60wa]  a:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
	.top-row[b-hc683k60wa] {
		padding-bottom: 0.5rem;
		padding-top: 0.5rem;
	}

	.top-row_dropdown-container[b-hc683k60wa]{
		width: 100%;
		justify-content: space-between;
	}

	.top-row[b-hc683k60wa]  a,
	.top-row[b-hc683k60wa]  .btn-link {
		margin-left: 0;
	}

	.top-row[b-hc683k60wa],
	article[b-hc683k60wa] {
		justify-content: space-around;
		gap: 0.25rem;
	}
}

@media (min-width: 641px) and (max-width: 790px) {
	.top-row[b-hc683k60wa] {
		justify-content: space-around;
		gap: 0.25rem;
	}

	.top-row_dropdown-container[b-hc683k60wa]{
		width: 100%;
		justify-content: space-between;
	}
}

@media (min-width: 641px) {
	.top-row[b-hc683k60wa] {
		position: sticky;
		top: 0;
		z-index: 500;
		padding-bottom: 0.75rem;
		padding-top: 0.75rem;
	}

	.top-row.auth[b-hc683k60wa]  a:first-child {
		flex: 1;
		text-align: right;
		width: 0;
	}

	.top-row[b-hc683k60wa],
	article[b-hc683k60wa] {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}
}

@media (min-width: 820px) {
	.top-row[b-hc683k60wa] {
		gap: 0.5rem;
	}
}

@media (min-width: 1040px) {
	.page[b-hc683k60wa] {
		flex-direction: row;
	}

	.sidebar[b-hc683k60wa] {
		min-width: 250px;
		height: 100dvh;
		position: sticky;
		top: 0;
	}
}

#blazor-error-ui[b-hc683k60wa] {
	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-hc683k60wa] {
	cursor: pointer;
	position: absolute;
	right: 0.75rem;
	top: 0.5rem;
}

.app-name[b-hc683k60wa] {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 510px) {
	.app-name[b-hc683k60wa] {
		display: block;
		width: 100%;
	}
}

.gap-inherit[b-hc683k60wa] {
	gap: inherit;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-4wv1k15bpa] {
	appearance: none;
	cursor: pointer;
	width: 3.5rem;
	height: 2.5rem;
	color: white;
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	border: 1px solid var(--mcd-gold);
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
		no-repeat center/1.75rem var(--mcd-gold);
}

.navbar-toggler:checked[b-4wv1k15bpa] {
	background-color: var(--mcd-light-gold);
}

.navbar-brand-logo[b-4wv1k15bpa] {
	padding-top: 0.5rem;
}

.top-row[b-4wv1k15bpa] {
	min-height: 3.5rem;
}

.bi[b-4wv1k15bpa] {
	display: inline-block;
	position: relative;
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 0.75rem;
	top: -1px;
	background-size: cover;
}

.bi-house-door-fill-nav-menu[b-4wv1k15bpa] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' class='bi bi-house-door-fill' 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-plus-square-fill-nav-menu[b-4wv1k15bpa] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-4wv1k15bpa] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-4wv1k15bpa] {
	font-size: 0.9rem;
	padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-4wv1k15bpa] {
	padding-top: 1rem;
}

.nav-item:last-of-type[b-4wv1k15bpa] {
	padding-bottom: 1rem;
}

.nav-item[b-4wv1k15bpa]  .nav-link {
	transition: all 0.2s ease-in-out;
	color: #3d3d3d;
	font-weight: 500;
	background: none;
	border: none;
	border-radius: var(--kendo-border-radius-md);
	height: 3rem;

	display: grid;
	grid-template-columns: 45px 1fr;
	align-items: center;
	gap: 1rem;
	/* line-height: 3rem; */
	width: 100%;

	img {
		justify-self: center;
	}
}

.nav-item[b-4wv1k15bpa]  a.active {
	/* background: var(--mcd-gold); */
	border: 1px solid var(--mcd-red);
	border-left: 4px solid var(--mcd-red);
	color: var(--mcd-black);
	font-weight: 600;
}

.nav-item[b-4wv1k15bpa]  a.active img {
	padding: 0.1rem;
	border-radius: var(--mcd-space-xs);
	/* background: var(--mcd-light-gold); */
}

.nav-item[b-4wv1k15bpa]  a.active {
	.bi-house-door-fill-nav-menu {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-house-door-fill' 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-plus-square-fill-nav-menu[b-4wv1k15bpa] {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
	}

	.bi-list-nested-nav-menu[b-4wv1k15bpa] {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
	}
}

.nav-item[b-4wv1k15bpa]  .nav-link:hover {
	border: 1px solid var(--mcd-gold);
	border-left: 4px solid var(--mcd-gold);
	background: var(--mcd-light-gold);
	transform: translateX(4px);
	color: #222222;
}

@media (min-width: 1040px) {
	.navbar-toggler[b-4wv1k15bpa] {
		display: none;
	}

	.navbar-brand-logo[b-4wv1k15bpa] {
		padding-top: 1.75rem;
	}

	.collapse[b-4wv1k15bpa] {
		/* Never collapse the sidebar for wide screens */
		display: block;
	}

	.nav-scrollable[b-4wv1k15bpa] {
		/* Allow sidebar to scroll for tall menus */
		overflow-y: auto;
	}
}
/* /Pages/IssueVoucher/IssueVoucher.razor.rz.scp.css */
/* /Pages/IssueVoucher/IssueVoucherItems/VoucherDetails/VoucherDetails.razor.rz.scp.css */
.voucher-counter-container[b-6z21axfs1v] {
	display: flex;
	align-items: center;
	gap: 0.5rem;
    margin-top: 0.25rem;
}

.voucher-counter[b-6z21axfs1v] {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.voucher-action[b-6z21axfs1v] {
    height: fit-content;
    border-radius: 4px;
    cursor: pointer;
    background-color: #f2f2f2;
}

.voucher-action-text[b-6z21axfs1v] {
    text-align: center;
    font-weight: 900;
    line-height: 0.5;
    margin: 0;
    width: fit-content;
    height: fit-content;
}

.voucher-amount[b-6z21axfs1v] {
    font-weight: 700;
}
/* /Pages/Profile/Profile.razor.rz.scp.css */
p[b-o41046cenh] {
	margin: 0;
}

.profile[b-o41046cenh] {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.active[b-o41046cenh] {
	margin: 0;
	padding: 0.35rem;
	background-color: #66c21b;
	color: rgb(41, 41, 41);
	border-radius: 0.5rem;
}

.active.inactive[b-o41046cenh] {
	background-color: #c21b1b;
	color: rgb(250, 250, 250);
}

.assigned-restaurants[b-o41046cenh] {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.title[b-o41046cenh] {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.profile-initials[b-o41046cenh] {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 80px;
	height: 80px;
	background-color: var(--gray);
	color: rgb(41, 41, 41);
	border-radius: 50%;

	flex: 0 0 80px;
}

.initials[b-o41046cenh] {
	font-size: 1.5rem;
	font-weight: 700;
}
