/* Settings Main Global Styles */

/* Reset body margin to avoid CSP violations from inline styles */
body {
	margin: 0;
}

/* Settings Page Layout Styles */

/* Page Container */
.settings-page-container {
	height: 100%;
	overflow-y: auto;
	/* Hide scrollbar for Chrome, Safari and Opera */
	-webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.settings-page-container::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.settings-page-container {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

/* Content Wrapper */
.settings-page-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0 32px 24px 32px;
	max-width: 100%;
}

/* Restore Defaults Button Container */
.settings-page-restore-defaults {
	display: flex;
	justify-content: flex-start;
	margin-top: 2px;
}

/* Responsive design for page layout */
@media (max-width: 768px) {
	.settings-page-content {
		padding: 16px 20px;
	}

	.setting-card {
		padding: 16px;
	}

	.setting-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* Settings Page Header Styles */
.settings-page-header-container {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 24px 0 12px 4px;
}

.settings-page-header-action {
	margin-left: auto;
	flex-shrink: 0;
}

.settings-back-button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.settings-back-button:hover {
	background-color: #f0f0f0;
	color: #333;
}

.settings-page-header {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin: 0;
	background: transparent;
	border: none;
}

/* Buttons Component Styles */

/* Primary Button - Blue background with white text (from UpdateWorkspaceSetting) */
.primary-button {
	background-color: #0045DB;
	color: white;
	border: 1px solid #0045DB;
	min-width: 106px;
	height: 40px;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 400;
	cursor: pointer;
	transition: background-color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}

.primary-button:hover:not(:disabled) {
	background-color: #003894;
}

.primary-button:active:not(:disabled) {
	background-color: #003894;
}

.primary-button:focus {
	outline: 2px solid #0045DB;
	outline-offset: 2px;
}

.primary-button:disabled {
	background-color: #767676;
	border-color: #767676;
	color: #ffffff;
	cursor: not-allowed;
}

/* Secondary Button - White background with blue text and border (from ButtonSetting) */
.secondary-button {
	min-width: 79px;
	height: 40px;
	padding: 12px 16px;
	font-size: 0.875rem;
	font-weight: 400;
	color: #0045DB;
	background-color: transparent;
	border: 1px solid #0045DB;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
}

.secondary-button:hover:not(:disabled) {
	background-color: #003894;
	border-color: #003894;
	color: #ffffff;
}

.secondary-button:active:not(:disabled) {
	background-color: #003894;
	border-color: #003894;
	color: #ffffff;
}

.secondary-button:focus {
	outline: 2px solid #0045DB;
	outline-offset: 2px;
}

.secondary-button:disabled {
	background-color: transparent;
	border-color: #767676;
	color: #767676;
	cursor: not-allowed;
}

/* Refresh Button - Link-style button with refresh icon */
.refresh-button {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #0045db;
	font-size: 13px;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.refresh-button:hover:not(.refreshing):not(.disabled) {
	text-decoration: underline;
	color: #003399;
}

.refresh-button.refreshing,
.refresh-button.disabled {
	cursor: default;
	pointer-events: none;
}

.refresh-button.refreshing:hover {
	text-decoration: none;
	color: #0045db;
}

.refresh-button.disabled {
	opacity: 0.5;
}

.refresh-button svg {
	flex-shrink: 0;
}

.refresh-button-spinner {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Menu Item Button - left-aligned icon+label row for flyouts and context menus */
.menu-item-button {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 36px;
	padding: 0 8px;
	border: none;
	background: #ffffff;
	border-radius: 6px;
	cursor: pointer;
	font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #171717;
	white-space: nowrap;
	width: 100%;
	text-align: left;
	transition: background-color 0.15s ease;
}

.menu-item-button:hover {
	background: #f5f5f5;
}

.menu-item-button:focus-visible {
	outline: 2px solid #0045db;
	outline-offset: -2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.primary-button,
	.secondary-button {
		width: 100%;
	}
}

/* Toggle Switch Styles */
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
	flex-shrink: 0;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #767676;
	transition: 0.3s;
	border-radius: 10px;
	border: 1px solid #d0d0d0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Hover States */
.toggle-slider:hover {
	background-color: #555555;
}

.toggle-switch input:checked + .toggle-slider:hover {
	background-color: #003894;
}

.toggle-slider:before {
	content: '';
	position: absolute;
	height: 16px;
	width: 16px;
	left: 2px;
	top: 50%;
	transform: translateY(-50%);
	background-color: white;
	border-radius: 8px;
	transition: 0.3s;
}

.toggle-slider:after {
	content: '';
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 9px;
	height: 9px;
	background-image: url('data:image/svg+xml;utf8,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.625 8.125L8.125 0.625" stroke="white" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.125 8.125L0.625 0.625" stroke="white" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	color: #666666;
	font-weight: bold;
	transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
	background-color: #0045DB;
}

.toggle-switch input:checked + .toggle-slider:before {
	left: auto;
	right: 2px;
	transform: translateY(-50%);
}

.toggle-switch input:checked + .toggle-slider:after {
	content: '';
	left: 6px;
	right: auto;
	width: 11px;
	height: 11px;
	background-image: url('data:image/svg+xml;utf8,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 0.625L3.71167 9.60792C3.54335 9.84977 3.26904 9.99597 2.97442 10.0008C2.6798 10.0057 2.4008 9.86866 2.22458 9.6325L0.625 7.5" stroke="white" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 0;
}

.toggle-switch input:focus + .toggle-slider {
	box-shadow: none;
}

/* Disabled Toggle Switch Styles */
.toggle-disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.toggle-disabled .toggle-slider {
	background-color: #767676;
	border-color: #e0e0e0;
	cursor: not-allowed;
}

/* Disabled States - prevent hover effects */
.toggle-disabled .toggle-slider:hover {
	background-color: #767676;
}

.toggle-disabled input:checked + .toggle-slider:hover {
	background-color: #0045DB;
}

.toggle-disabled input:checked + .toggle-slider {
	background-color: #0045DB;
}

.toggle-disabled input:checked + .toggle-slider:after {
	opacity: 0.7;
}

/* SettingCard Component Styles */

/* Card Section */
.setting-card {
	background: #ffffff;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Disabled Card State */
.setting-card-disabled {
	opacity: 1;
	cursor: not-allowed;
	pointer-events: none;
}

/* Setting Header/Title */
.setting-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	color: #171717;
	margin: 0;
	line-height: 1.4;
	text-align: left;
	flex-shrink: 0;
}

.setting-card-header h3 {
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	color: #171717;
	margin: 0;
	line-height: 1.4;
	text-align: left;
	flex-shrink: 0;
}

.setting-card-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex-grow: 1;
}

/* Deprecated Icon Styles */
.setting-card-deprecated-icon {
	flex-shrink: 0;
	margin-left: auto;
}

/* Title Icon Styles */
.setting-card-header svg {
	margin-left: 4px;
	vertical-align: middle;
}

.setting-card-header .setting-card-help-icon {
	margin-left: 4px;
	vertical-align: middle;
}

/* Setting Description */
.setting-card-description {
	font-size: 13px;
	font-weight: 400;
	font-style: normal;
	color: #555555;
	line-height: 150%;
	margin: 0;
	white-space: pre-line;
}

.setting-card-description p {
	margin: 0;
}

/* Info Icon Styles */
.setting-card-description svg {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	vertical-align: middle;
	color: #0078d4;
}

/* Learn More Link */
.setting-card-learn-more {
	color: var(--Primary-color, #0045DB);
	font-family: "Public Sans";
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

/* Content separator support */
.setting-card.with-content-separator > .setting-card-content {
	border-top: 1px solid #e5e5e5;
	margin-top: 4px;
	padding-top: 12px;
}

/* Base SettingStatus Styles */
.settings-status {
	display: flex;
	align-items: center;
	border-radius: 2px;
	padding: 0px 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #171717;
	gap: 8px;
	height: 32px;
	margin: 8px 0px 0px 0px;
}

.settings-status-plain {
	background-color: transparent;
}

.settings-status-alertMessageContent {
	background-color: #F2FFEF;
}

.settings-status-important {
	background-color: #FAF2C4;
}

.settings-status-info {
	background-color: #E1F4FF;
}

.settings-status-error {
	background-color: #FFE4E4;
}

/* Status Type Specific Styles */
.settings-status-warning {
	background-color: #FFF1E8;
}

.settings-status-settingNote {
	background-color: #f3f9ff;
}

.settings-status-settingNoteWarning {
	background-color: transparent;
	color: var(--Greyscale-Grey-800, #555);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 2px 0px 0px 0px;
}

.admin-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.warning-alert-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-left: -8px;
}

.setting-card-content {
	/* Base styles for settings card content */
	padding: 0;
	margin: 0;
}

/* Specific spacing for dropdown settings */
.setting-card-content.dropdown {
	margin-top: 12px;
}

/* Custom content styles */
.toggle-custom-content {
	width: 100%;
}

.toggle-custom-content.with-separator {
	border-top: 1px solid #E5E5E5;
	margin-top: 4px;
	padding-top: 12px;
}

.toggle-custom-content.without-separator {
	padding-top: 4px;
}

/* Help Icon Component Styles */
.help-icon-container {
	position: relative;
	display: inline-flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.help-icon {
	width: 16px;
	height: 16px;
	transition: opacity 0.2s ease;
}

.help-icon:hover {
	opacity: 0.8;
}

.help-tooltip {
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	width: 312px;
	background: #000000;
	color: white;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	white-space: normal;
	z-index: 1000;
	margin-left: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.help-tooltip::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(-100%);
	border: 4px solid transparent;
	border-right-color: #000000;
}

/* Responsive tooltip positioning */
@media (max-width: 768px) {
	.help-tooltip {
		position: fixed;
		bottom: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		white-space: normal;
		max-width: 250px;
		text-align: center;
		margin-bottom: 0;
	}
	
	.help-tooltip::after {
		display: none;
	}
}

/* Standard Radio Groups */
.standard-radio-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}

.standard-radio-option {
	display: flex;
	flex-direction: column;
	position: relative;
}

.standard-radio-option-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

/* Hide default radio button */
.standard-radio-input {
	display: none;
}

/* Custom radio button */
.standard-radio-button {
	width: 16px;
	height: 16px;
	border: 1.5px solid #767676;
	border-radius: 50%;
	background: white;
	position: relative;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

/* Hover state */
.standard-radio-option-label:hover .standard-radio-button {
	border-color: #767676;
	background: white;
}

/* Hover state for checked radio buttons */
.standard-radio-option-label:hover .standard-radio-input:checked + .standard-radio-button {
	border-color: #003894;
	background: white;
}

.standard-radio-option-label:hover .standard-radio-input:checked + .standard-radio-button::after {
	background: #003894;
}

/* Radio button checked state */
.standard-radio-input:checked + .standard-radio-button {
	border-color: #0045DB;
	background: white;
}

.standard-radio-input:checked + .standard-radio-button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: #0045DB;
	border-radius: 50%;
}

/* Focus states for accessibility */
.standard-radio-input:focus-visible + .standard-radio-button {
	outline: 2px solid #0045DB;
	outline-offset: 2px;
}

/* Disabled state */
.standard-radio-option-label:has(.standard-radio-input:disabled) {
	cursor: not-allowed;
	opacity: 0.5;
}

.standard-radio-option-label:has(.standard-radio-input:disabled) .standard-radio-button {
	border-color: #767676;
	background: white;
}

/* Disabled + checked state */
.standard-radio-option-label:has(.standard-radio-input:disabled:checked) .standard-radio-button {
	border-color: #003894;
	background: white;
}

.standard-radio-option-label:has(.standard-radio-input:disabled:checked) .standard-radio-button::after {
	background: #003894;
}

.standard-radio-label {
	flex: 1;
	font-size: 13px;
	font-weight: 400;
	color: #171717;
	line-height: 22px;
	margin-left: 12px;
}

.standard-radio-description {
	font-size: 13px;
	font-weight: 400;
	color: #767676;
	line-height: 1.4;
	margin-left: 32px;
}

/* Content wrapper for custom content */
.standard-radio-custom-content {
	margin-left: 32px;
	margin-top: 2px;
}

/* Radio Setting Title with Help Icon */
.radio-setting-title-container {
	display: flex;
	align-items: center;
	gap: 2px;
}

.radio-setting-title-container h3 {
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	color: #171717;
	margin: 0;
	line-height: 1;
	text-align: left;
}

/* Icon Option Radio Groups */
.icon-option-radio-group {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
	margin: 4px 50px;
	align-items: center;
	justify-content:  left;
}

.icon-option-radio-option {
	transition: all 0.2s ease;
	cursor: pointer;
	flex: 1 1 auto;
}

.icon-option-radio-option.selected {
	position: relative;
}

.icon-option-radio-option.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.icon-option-radio-option-label {
	display: block;
	cursor: pointer;
	padding: 4px;
	margin: 0;
}

/* Hide default radio input */
.icon-option-radio-input {
	display: none;
}

.icon-option-radio-content-horizontal {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.icon-option-radio-icon-container {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 1px;
	width: 180px;
	border-radius: 6px;
	background-color: transparent;
	border: none;
	margin: 0 auto;
	box-sizing: border-box;
}

.icon-option-radio-label {
	font-size: 15px;
	font-weight: 590;
	color: #171717;
	line-height: 20px;
	height: 40px;
}

.icon-option-radio-indicator {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
}

/* Circular checkbox with SVG checkmark */
.circular-checkbox {
	width: 20px;
	height: 20px;
	border: 2px solid #CCCCCC;
	border-radius: 50%;
	background: white;
	position: relative;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Checked state */
.icon-option-radio-option.selected .circular-checkbox {
	border-color: #0045DB;
	background: #0045DB;
}

.icon-option-radio-option.selected .circular-checkbox::after {
	content: '';
	position: absolute;
	width: 11px;
	height: 11px;
	background-image: url('data:image/svg+xml;utf8,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 0.625L3.71167 9.60792C3.54335 9.84977 3.26904 9.99597 2.97442 10.0008C2.6798 10.0057 2.4008 9.86866 2.22458 9.6325L0.625 7.5" stroke="white" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* Focus states for accessibility */
.icon-option-radio-input:focus-visible + .icon-option-radio-content-horizontal .circular-checkbox {
	outline: 2px solid #0045DB;
	outline-offset: 2px;
}

/* Selected option description */
.icon-option-radio-description-selected {
	margin-top: 12px;
	margin-bottom: 12px;
	font-size: 13px;
	color: #767676;
	line-height: 1.4;
	text-align: center;
}

/* Modal Component Styles */

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-container {
	max-width: 90vw;
	max-height: 90vh;
	overflow: auto;
}

.modal-content {
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	min-width: 400px;
	max-width: 600px;
	border-top: 8px solid #FF9500; /* Default orange border, overridden by inline style */
	position: relative;
	animation: modalSlideIn 0.2s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.modal-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 40px 40px 16px 40px;
}

.modal-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.modal-icon-svg {
	color: #FF9500;
}

.modal-title {
	font-size: 20px;
	font-weight: 600;
	color: #171717;
	margin: 0;
	line-height: 1.4;
}

.modal-body {
	padding: 0 40px 16px 40px;
}

.modal-description {
	font-size: 16px;
	color: #171717;
	line-height: 24px;
	margin: 0;
}

.modal-footer {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	padding: 40px;
	border-top: none;
}

.modal-button {
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 400;
	cursor: pointer;
	border: 1px solid;
	transition: all 0.2s ease;
	min-width: 72px;
	height: 32px;
	box-sizing: border-box;
}

.modal-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.modal-button-primary {
	background-color: #0045DB;
	color: white;
	border-color: #0045DB;
}

.modal-button-primary:hover:not(:disabled) {
	background-color: #003894;
	border-color: #003894;
}

.modal-button-secondary {
	background-color: white;
	color: #0045DB;
	border-color: #0045DB;
}

.modal-button-secondary:hover:not(:disabled) {
	background-color: #F0F4FF;
	border-color: #0045DB;
	color: #0045DB;
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.modal-content {
		min-width: 320px;
		margin: 16px;
	}
	
	.modal-footer {
		flex-direction: column;
		align-items: stretch;
	}
	
	.modal-button {
		width: 100%;
	}
	
	.modal-description {
		margin-left: 0;
	}
	
	.modal-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.modal-icon {
		align-self: flex-start;
	}
}

/* Focus management */
.modal-backdrop:focus {
	outline: none;
}

.modal-button:focus-visible {
	outline: 2px solid #0045DB;
	outline-offset: 2px;
}

/* WorkspaceUpdateSettings Page Styles */

.workspace-update-check-button {
	margin-top: 8px;
	height: 32px;
	padding: 8px 16px;
}

.text-input-container {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100%;
}

.text-input-label-container {
	display: flex;
	align-items: center;
	gap: 6px;
}

.text-input-label {
	font-size: 13px;
	font-weight: 600;
	color: #000000;
	line-height: 18px;
	margin: 0;
}

.text-input-help-icon {
	flex-shrink: 0;
}

.text-input-field-container {
	display: flex;
	width: 100%;
}

.text-input-field {
	width: 100%;
	height: 31px;
	padding: 8px 12px;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 400;
	color: #171717;
	background: white;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.text-input-field:focus {
	outline: none;
	border-color: #0045DB;
	box-shadow: 0 0 0 1px #0045DB;
}

.text-input-field:disabled {
	background: #F5F5F5;
	color: #999999;
	cursor: not-allowed;
}

.text-input-field::placeholder {
	color: #999999;
	font-style: normal;
	font-size: 13px;
	font-weight: 400;
}

.text-input-required-asterisk {
	color: #d32f2f;
}

.text-input-textarea {
	width: 100%;
	resize: vertical;
	min-height: 80px;
	height: auto;
	font-family: inherit;
}

.shortcut-settings {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shortcut-settings .text-input-container {
	max-width: 360px;
}

/* Toggle Setting Group Styles */
.toggle-setting-group-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 8px 0;
	width: 100%;
	gap: 16px;
}

.toggle-setting-group-label {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.toggle-setting-group-title {
	color: #171717;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.toggle-setting-group-description {
	color: #666666;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	margin-top: 4px;
}

/* Group container styles */
.toggle-setting-group {
	display: flex;
	flex-direction: column;
}

/* Disabled sub-setting item */
.toggle-setting-group-item-disabled {
	opacity: 0.5;
	pointer-events: none;
}

.about-settings-container {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-card {
	border-radius: 8px;
	background: var(--color-background-primary);
	border: 1px solid var(--color-border-tertiary);
	padding: 0;
	margin-bottom: 0;
}

.about-specifications {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0;
	margin-bottom: 16px;
}

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px 0;
	min-height: 16px;
}

.spec-label {
	font-size: 13px;
	font-weight: 400;
	color: #555555;
	flex: 0 0 auto;
	min-width: 120px;
}

.spec-value {
	font-size: 13px;
	font-weight: 600;
	color: #171717;
	flex: 1;
}

.about-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--color-border-tertiary);
}

.copy-details-button {
	width: 107px;
	height: 32px;
}

.link-button {
	background: none;
	border: none;
	color: var(--color-accent-primary);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	transition: color 0.2s ease;
}

.link-button:hover {
	color: var(--color-accent-secondary);
	text-decoration: underline;
}

.about-footer {
	display: flex;
	flex-direction: row;
	gap: 16px;
	padding: 12px 0;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}

.about-footer .link-button {
	color: #0045DB;
}

.copyright {
	font-size: 12px;
	font-weight: 600;
	color: #171717;
	line-height: 1.4;
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
	.spec-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 12px 0;
	}
	
	.spec-label {
		min-width: unset;
	}
	
	.spec-value {
		text-align: left;
		word-break: break-word;
	}
	
	.about-actions {
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
	}
	
	.copy-button,
	.copy-details-button {
		width: 100%;
		text-align: center;
	}
}

/* Section title with icon */
.section-title-container {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: -4px;
	margin-bottom: 16px;
}

.section-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-primary);
	margin: 0;
}

/* FileDownloadLocationSetting Component Styles */

.download-path {
	display: flex;
	align-items: center;
	margin-left: 0px;
	gap: 8px;
}

.path-input {
	width: 240px;
	height: 32px;
	font-size: 13px;
	color: var(--text-primary, #000);
	border: 1px solid var(--border-color, #ccc);
	background: var(--background-primary, #fff);
	padding: 6px 8px;
	border-radius: 4px;
	font-family: inherit;
	box-sizing: border-box;
}

.path-input:focus {
	outline: none;
	border-color: var(--primary-color, #0078d4);
}

.path-input:disabled {
	background-color: var(--background-disabled, #f5f5f5);
	color: var(--text-disabled, #aaa);
	cursor: not-allowed;
}

.path-text {
	font-size: 13px;
	color: var(--text-secondary, #666);
	flex: 1;
	font-family: monospace;
}

.change-button {
	height: 32px;
}

/* Figma Dropdown Component Styles */

.dropdown {
	max-width: 720px;
	min-width: 240px;
	width: 240px;
	position: relative;
}

.dropdown-state-default {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
	max-height: 90px;
	width: 100%;
	position: relative;
}

.dropdown-state-error .dropdown-body {
	border-color: #ad0000;
}

.dropdown-state-success .dropdown-body {
	border-color: #107c10;
}

/* Label Body Styles */
.dropdown-label-body {
	display: flex;
	gap: 4px;
	align-items: center;
	max-width: 400px;
	width: 100%;
	position: relative;
}

.dropdown-label-text {
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.4;
	color: #000000;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
}

.dropdown-required-indicator {
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #ad0000;
	white-space: nowrap;
	flex-shrink: 0;
}

.dropdown-help-icon-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 4px;
	flex-shrink: 0;
}

.dropdown-help-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* Dropdown Body Styles */
.dropdown-body {
	background: #ffffff;
	border: 1px solid #767676;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 8px 16px;
	width: 100%;
	flex-shrink: 0;
	position: relative;
	min-height: 16px;
}

.dropdown-content {
	display: flex;
	gap: 12px;
	align-items: center;
	width: 100%;
	flex-shrink: 0;
	cursor: pointer;
	outline: none;
}

.dropdown-left-content {
	display: flex;
	flex: 1;
	gap: 8px;
	align-items: center;
	min-height: 1px;
	min-width: 1px;
}

.dropdown-text-container {
	flex: 1;
	min-height: 1px;
	min-width: 1px;
	position: relative;
	display: flex;
	align-items: center;
}

.dropdown-selected-text {
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #000000;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 100%;
}

.dropdown-arrow-container {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dropdown-arrow {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.dropdown-arrow-open {
	transform: rotate(180deg);
}

/* Dropdown Options */
.dropdown-options {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: #ffffff;
	border: 1px solid #767676;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
}

.dropdown-option {
	padding: 12px 16px;
	font-family: 'Public Sans', sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: #000000;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.dropdown-option:last-child {
	border-bottom: none;
}

.dropdown-option:first-child {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.dropdown-option:last-child {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.dropdown-option:hover {
	background-color: #f5f5f5;
}

.dropdown-option-selected {
	font-weight: 600;
	color: #000000;
	background-color: #E1F4FF;
}

.dropdown-option-selected:hover {
	background-color: #f5f5f5;
}

.dropdown:hover .dropdown-body {
	border-color: #484848;
}

.dropdown-body:focus-within {
	border-color: #0078d4;
	box-shadow: 0 0 0 1px #0078d4;
}

/* Validation Message */
.dropdown-validation-message {
	font-family: 'Public Sans', sans-serif;
	font-size: 12px;
	color: #ad0000;
	margin-top: 4px;
	line-height: 1.2;
}

/* Disabled State */
.dropdown[aria-disabled="true"] .dropdown-body,
.dropdown.dropdown-disabled .dropdown-body {
	background-color: #f8f8f8;
	border-color: #c8c8c8;
	opacity: 0.6;
	cursor: not-allowed;
}

.dropdown[aria-disabled="true"] .dropdown-label-text,
.dropdown.dropdown-disabled .dropdown-label-text {
	color: #999999;
	cursor: not-allowed;
}

.dropdown[aria-disabled="true"] .dropdown-selected-text,
.dropdown.dropdown-disabled .dropdown-selected-text {
	color: #999999;
}

.dropdown[aria-disabled="true"] .dropdown-arrow,
.dropdown.dropdown-disabled .dropdown-arrow {
	opacity: 0.5;
}

.dropdown[aria-disabled="true"] .dropdown-content,
.dropdown.dropdown-disabled .dropdown-content {
	cursor: not-allowed;
}


/* Responsive adjustments */
@media (max-width: 768px) {
	.dropdown {
		min-width: 200px;
		width: 100%;
		max-width: 100%;
	}
	
	.dropdown-label-body {
		max-width: 100%;
	}
}

.dropdown-margin {
	margin: 8px 0px;
}

/* ──────────────────────────────────────────────────────────────────────────────
   FlyoverNotification – top-of-screen banner
   ────────────────────────────────────────────────────────────────────────────── */

.flyover {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 464px;
	min-width: 256px;
	max-width: 864px;
	padding: 10px 16px 10px 12px;
	border-left: 4px solid transparent;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: #171717;
	box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.24);
	animation: flyover-slide-in 0.2s ease-out;
	box-sizing: border-box;
	position: absolute;
	top: 16px;
	left: 32px;
	z-index: 10;
}

@keyframes flyover-slide-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Variants ──────────────────────────────────────────────────────────────── */

.flyover--error {
	background-color: #FFE4E4;
	border-left-color: #AB0000;
}

.flyover--success {
	background-color: #F2FFEF;
	border-left-color: #4A9912;
}

.flyover--warning {
	background-color: #FFF1E8;
	border-left-color: #D15700;
}

.flyover--info {
	background-color: #E1F4FF;
	border-left-color: #0045DB;
}

/* ── Icon ──────────────────────────────────────────────────────────────────── */

.flyover__icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

/* ── Message ───────────────────────────────────────────────────────────────── */

.flyover__message {
	flex: 1;
}



/* Navigation Setting Styles */
.navigation-setting {
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.navigation-setting:hover {
	transform: translateY(-1px);
}

.navigation-setting .settings-card {
	transition: all 0.2s ease;
}

.navigation-setting:hover .settings-card {
	border-color: #d0d0d0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navigation-setting .settings-card-header {
	cursor: pointer;
}

.navigation-arrow {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.2s ease;
	pointer-events: none;
}

.navigation-setting:hover .navigation-arrow {
	transform: translateY(-50%) translateX(2px);
}

.navigation-arrow svg {
	transition: opacity 0.2s ease;
}

.navigation-setting:hover .navigation-arrow svg {
	opacity: 0.8;
}

/* Focus states for accessibility */
.navigation-setting:focus-visible {
	outline: 2px solid #0078d4;
	outline-offset: 2px;
	border-radius: 8px;
}

/* ButtonSetting Component Styles */

/* Button container for multiple buttons */
.button-setting-container {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.button-setting-button {
	align-self: flex-start;
}

/* Responsive button styles for mobile */
@media (max-width: 768px) {
	.button-setting-button {
		align-self: stretch;
	}
}

.radio-setting-group {
	display: flex;
	flex-direction: column;
}

.radio-setting-group-item {
	padding: 8px 0;
}

/* Dropdown Setting Styles */
.dropdown-setting-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.tls-settings-page {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tls-settings-page .settings-error {
	color: #e74c3c;
	padding: 12px;
	border-radius: 4px;
	background-color: #fdf2f2;
	border: 1px solid #fce4e4;
	margin-top: 16px;
}

/* PermissionsSetting Component Styles */

.permissions-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.permissions-store-section {
	margin-bottom: 4px;
}

.permission-dropdown {
	width: 240px;
}

.permission-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.permission-group-header {
	margin-bottom: 4px;
}

.permission-group-title {
	font-size: 13px;
	font-weight: 600;
	color: #171717;
	margin: 0;
	line-height: 1.4;
}

.permission-radio-section {
	display: flex;
	align-items: flex-start;
}

/* Keep radio options vertical */
.permission-radio-section .standard-radio-group {
	margin-top: 0;
}

/* Separator between permission groups */
.permission-separator {
	height: 1px;
	background-color: #E5E5E5;
	margin: 8px 0;
}

/* Disabled state */
.permission-dropdown:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Responsive design */
@media (max-width: 768px) {
	.permission-dropdown {
		width: 100%;
		min-width: 200px;
	}

	.permissions-container {
		gap: 16px;
	}
}

/* Keyboard Unicode Mode Setting Styles */
.keyboard-unicode-mode-content {
	display: flex;
	flex-direction: column;
}

.keyboard-unicode-mode-item {
	margin-bottom: 24px;
}

.keyboard-unicode-mode-item:last-child {
	margin-bottom: 0;
}

/* MonitorLayout Component Styles */

.monitor-layout-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px 0;
}

/* Monitor Canvas */
.monitor-canvas {
	position: relative;
	width: 100%;
	height: 320px;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	overflow: hidden;
	cursor: crosshair;
}

/* Monitor */
.monitor {
	position: absolute;
	background-color: #ffffff;
	outline: 1px solid #e0e0e0;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 12px;
	transition: outline-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
	cursor: default;
	user-select: none;
}

.monitor.primary {
	border-radius: 2px 0 0 0;
	outline: none;
	border: none;
	box-shadow: inset 0 0 0 1px var(--Blue-01, #003894);
	z-index: 1;
}

.monitor.hovered {
	outline-color: #b0b0b0;
	box-shadow: 0 0 0 1px #b0b0b0;
}

.monitor.selected {
	outline-color: #9ca3af;
	outline-width: 1px;
	box-shadow: 0 0 8px rgba(156, 163, 175, 0.3);
}

.monitor-header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 8px;
	gap: 4px;
	z-index: 10;
	position: relative;
	pointer-events: auto;
}

.monitor-dpi-selector {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.dpi-label {
	font-weight: 600;
	color: #171717;
}

.monitor-dpi-dropdown {
	width: 60px;
	min-width: 60px;
}

.monitor-dpi-dropdown .dropdown-state-default {
	margin-bottom: 0;
	max-height: none;
}

.monitor-dpi-dropdown .dropdown-body {
	padding: 2px 4px;
	min-height: auto;
	box-sizing: border-box;
}

.monitor-dpi-dropdown .dropdown-left-content {
	gap: 0;
}

.monitor-dpi-dropdown .dropdown-arrow-container {
	width: 16px;
	height: 16px;
}

.monitor-dpi-dropdown .dropdown-arrow {
	width: 16px;
	height: 16px;
}

.monitor-dpi-dropdown .dropdown-selected-text {
	font-size: 12px;
}

.monitor-dpi-dropdown .dropdown-options {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
	left: 0;
	right: unset;
	width: 60px !important;
	min-width: 60px;
	max-width: 60px;
}

.monitor-dpi-dropdown .dropdown-options::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

.monitor-dpi-dropdown .dropdown-option {
	padding: 6px 8px;
	font-size: 12px;
	text-align: left;
	box-sizing: border-box;
}

/* Split Preview Line */
.split-preview {
	position: absolute;
	z-index: 50;
	pointer-events: none;
}

.split-preview.horizontal {
	width: 100%;
	height: 0;
	left: 0;
	border-top: 1px dashed #d0d0d0;
}

.split-preview.vertical {
	width: 0;
	height: 100%;
	top: 0;
	border-left: 1px dashed #d0d0d0;
}

.split-preview-percentage {
	background-color: transparent;
	color: black;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* Primary Indicator */
.primary-indicator {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	pointer-events: none;
}

.primary-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--Blue-01, #003894);
	background: var(--Blue-Blue-100, #E1F4FF);
	border-radius: 2px;
	padding: 2px 6px;
	margin-right: 4px;
}

/* Monitor Controls */
.monitor-controls {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 16px;
}

/* Reset Button */
/* Action Buttons Container */
.action-buttons {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

/* Partition mode radio group — vertical layout */
.partition-mode-radio .standard-radio-group {
	flex-direction: column;
	gap: 8px;
	margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.monitor-canvas {
		height: 240px;
	}

	.monitor-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.action-buttons {
		flex-direction: column;
		margin-left: 0;
	}
}

/* Camera Setting Styles */
.camera-setting-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.camera-setting-dropdown {
    margin-top: 12px;
}

.camera-setting-toggle-group {
	margin-top: 12px;
	width: 100%;
}



/* DeviceInfoDescriptionHeader Component Styles */

.device-info-description-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.device-info-description-content {
	flex: 1;
	color: #666666;
	font-size: 13px;
	line-height: 1.5;
}

.device-info-description-text {
	color: #666666;
}

.device-info-learn-more-link {
	color: #0045db;
	text-decoration: none;
	font-size: 13px;
	white-space: nowrap;
}

.device-info-learn-more-link:hover {
	text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.device-info-description-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.refresh-button {
		align-self: flex-end;
	}
}

.data-table-wrapper {
	width: 100%;
	overflow: auto;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.data-table thead {
	position: sticky;
	top: 0;
	z-index: 1;
	background-color: #f5f5f5;
}

.data-table th {
	text-align: left;
	padding: 12px;
	font-weight: 600;
	color: #000000;
	border-bottom: 2px solid #e0e0e0;
	white-space: nowrap;
	position: relative;
}

.data-table th .th-content {
	display: inline;
}

/* Resize handle — also serves as column separator in header */
.column-resize-handle {
	position: absolute;
	right: -2px;
	top: 20%;
	width: 1.5px;
	height: 60%;
	cursor: ew-resize;
	user-select: none;
	touch-action: none;
	z-index: 2;
	background-color: #989898;
}

.column-resize-handle:hover {
	background-color: #FFFFFF;
}

.column-resize-handle:active {
	background-color: #FFFFFF;
}

/* Fixed table layout when resizable */
.data-table-resizable {
	table-layout: fixed;
}

.data-table td {
	padding: 12px;
	color: #000000;
	border-bottom: 1px solid #e0e0e0;
}

.data-table tbody tr:last-child td {
	border-bottom: none;
}

.data-table tbody tr:hover {
	background-color: #f9f9f9;
}

/* DevicesInfo Component Styles */

/* Content wrapper */
.devices-info-content {
	transition: opacity 0.2s ease;
}

.devices-info-content.refreshing {
	opacity: 0.5;
	pointer-events: none;
}

/* Loading State */
.devices-info-loading {
	padding: 24px;
	text-align: center;
	color: #767676;
	font-size: 13px;
}

/* Empty State */
.devices-info-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
	gap: 12px;
}

.devices-info-empty-icon {
	width: 40px;
	height: 40px;
	opacity: 1;
}

.devices-info-empty-text {
	margin: 0;
	color: #767676;
	font-size: 14px;
	font-weight: 400;
}

/* DataTable overrides for devices table */
.devices-info-table {
	margin-top: 8px;
}

.devices-info-table .data-table thead {
	background-color: #E6E6E6;
}

.devices-info-table .data-table th {
	padding: 12px 16px;
	color: #171717;
}

.devices-info-table .data-table th:nth-child(n+2) {
	text-align: center;
}

.devices-info-table .data-table td {
	padding: 16px;
	vertical-align: middle;
	color: #171717;
}

.devices-info-table .data-table td:nth-child(n+2) {
	text-align: center;
}

/* Device Info Cell */
.device-info-cell {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.device-name-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

.device-name {
	font-weight: 600;
	color: #171717;
	font-size: 13px;
}

.device-info-icon {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.device-info-icon::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 6px);
	transform: translateX(-50%);
	background-color: #767676;
	color: #FFFFFF;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s ease;
	z-index: 10;
}

.device-info-icon:hover::after {
	opacity: 1;
}

.device-parent-name {
	font-weight: 400;
	color: #767676;
	font-size: 12px;
}

/* Device Connection Cell */
.device-connection-cell {
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: center;
}

.connection-line {
	font-weight: 400;
	color: #171717;
	font-size: 13px;
}

/* Virtual Channel Dropdown */
.device-virtual-channel-dropdown {
	width: auto;
	min-width: 120px;
	max-width: 150px;
	margin: 0 auto;
}

.device-virtual-channel-dropdown .dropdown-state-default {
	margin-bottom: 0;
	max-height: none;
}

.device-virtual-channel-dropdown .dropdown-body {
	padding: 4px 12px;
	min-height: auto;
}

.device-virtual-channel-dropdown .dropdown-selected-text {
	font-size: 13px;
}

/* Policy Restricted Text */
.policy-restricted-text {
	color: #767676;
	font-size: 13px;
	font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
	.devices-info-table .data-table th,
	.devices-info-table .data-table td {
		padding: 12px 8px;
		font-size: 12px;
	}

	.device-virtual-channel-dropdown {
		width: auto;
		min-width: 100px;
		max-width: 130px;
	}

	.device-virtual-channel-dropdown .dropdown-body {
		padding: 4px 10px;
	}

	.device-virtual-channel-dropdown .dropdown-selected-text {
		font-size: 12px;
	}
}

/* Search Control Styles - Extracted from SettingsLayout.css */
.search-container {
	flex-shrink: 0;
}

.search-input-wrapper {
	position: relative;
	display: block;
	width: 100%;
}

.search-icon {
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	pointer-events: none;
	z-index: 1;
	color: #767676;
}

.search-input {
	width: 100%;
	height: 32px;
	padding: 0 12px 0 32px;
	border: 1px solid #767676;
	border-radius: 4px;
	font-size: 13px;
	color: #171717;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.search-input:focus {
	border-color: #0045db;
}

.search-input:focus-visible {
	outline: 2px solid #0045db;
	outline-offset: -1px;
}

.search-input::placeholder {
	color: #767676;
}

/* =============================================
   Stores Page - AccountManagement
   Matches Figma design: node 7381:184867
   ============================================= */

/* ---- Stores Card ---- */
.stores-card {
	border: none;
	padding: 0;
}

/* Hide the empty header so no top gap appears */
.stores-card .setting-card-header {
	display: none;
}

/* ---- DataTable overrides for stores ---- */
.stores-data-table.data-table-wrapper {
	overflow: hidden;
}

/* Override fixed table-layout so the name column expands naturally */
.stores-data-table .data-table.data-table-resizable {
	table-layout: auto;
}

.stores-data-table .data-table th {
	background: #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	padding: 8px 16px;
	font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 12px;
	line-height: 16px;
}

.stores-data-table .data-table td {
	padding: 8px 16px;
	border-bottom: 1px solid #e6e6e6;
	vertical-align: middle;
	overflow: visible;
}

.stores-data-table .data-table tbody tr:last-child td {
	border-bottom: none;
}

.stores-data-table .data-table tbody tr:hover {
	background-color: #f8f8f8;
}

.store-name-cell {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
	gap: 8px;
}

.store-name-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.store-name-row {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: nowrap;
}

.store-name-text {
	font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	white-space: nowrap;
	line-height: 1.4;
}

/* ---- Primary Badge ---- */
.store-primary-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 16px;
	padding: 2px 6px;
	background: #e1f4ff;
	border-radius: 2px;
	font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #003894;
	white-space: nowrap;
	flex-shrink: 0;
	line-height: 1;
}

.store-url-text {
	font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #767676;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4;
	display: block;
}

/* ---- More Options Button ---- */
.store-actions-wrapper {
	position: relative;
	flex-shrink: 0;
}

.store-more-options-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: none;
	background: none;
	cursor: pointer;
	color: #424242;
	border-radius: 2px;
	padding: 0;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.store-more-options-btn:hover {
	background: #e8e8e8;
	color: #171717;
}

.store-more-options-btn:focus-visible {
	outline: 2px solid #0045db;
	outline-offset: 1px;
}

/* ---- Store Flyout ---- */
.store-flyout {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.24);
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 227px;
}

/* store-flyout-item uses the shared menu-item-button base; no extra styles needed here */

/* ---- Empty State ---- */
.stores-empty-state {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 16px;
	color: #767676;
	font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 14px;
}

.stores-empty-state p {
	margin: 0;
}

/* ── Edit Store Card ── */
.edit-store-card {
	border: none;
}

/* ── Form ── */
.edit-store-form {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* ── Fields ── */
.edit-store-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Width variants applied to TextInput container */
.edit-store-field--sm {
	width: 240px;
	max-width: 100%;
}

.edit-store-field--lg {
	width: 100%;
	max-width: 480px;
}

/* Make the input fill its container width */
.edit-store-field--sm .text-input-field,
.edit-store-field--lg .text-input-field {
	width: 100%;
}

/* ── Actions ── */
.edit-store-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Normalize button min-widths within the edit form so Save and Cancel are visually balanced */
.edit-store-actions .primary-button,
.edit-store-actions .secondary-button {
	min-width: auto;
}


.button-group {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.button-group-vertical {
	flex-direction: column;
}

.log-dialog-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.log-dialog-container {
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	min-width: 400px;
	max-width: 500px;
	padding: 40px;
	animation: logDialogSlideIn 0.2s ease-out;
	position: relative;
	overflow: visible;
}

@keyframes logDialogSlideIn {
	from {
		opacity: 0;
		transform: translateY(-16px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.log-dialog-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.log-dialog-spinner {
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 3px solid #e3e3e3;
	border-top-color: #0045db;
	border-radius: 50%;
	animation: logDialogSpin 0.8s linear infinite;
	flex-shrink: 0;
}

@keyframes logDialogSpin {
	to {
		transform: rotate(360deg);
	}
}

.log-dialog-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	color: #1a1a1a;
}

.log-dialog-description {
	color: #444;
	margin: 0 0 24px 0;
	line-height: 1.5;
}

.log-dialog-footer {
	display: flex;
	gap: 12px;
}

.log-dialog-cancel-flyover {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(100%);
	background: #fff4e5;
	border: 1px solid #e0e0e0;
	border-radius: 0 0 8px 8px;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	animation: cancelFlyoverSlideIn 0.15s ease-out;
}

@keyframes cancelFlyoverSlideIn {
	from {
		opacity: 0;
		transform: translateY(90%);
	}
	to {
		opacity: 1;
		transform: translateY(100%);
	}
}

.log-dialog-cancel-warning-icon {
	flex-shrink: 0;
}

.log-dialog-cancel-text {
	flex: 1;
	font-size: 13px;
	color: #1a1a1a;
	line-height: 1.4;
}

.log-dialog-cancel-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.icon-button {
	background: none;
	border: 1px solid #c0c0c0;
	border-radius: 4px;
	cursor: pointer;
	padding: 4px;
	color: #444;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.icon-button:hover {
	background: #e8e8e8;
	color: #1a1a1a;
}

.icon-button-borderless {
	border: none;
}

.icon-button-delete:hover {
	background: #fde8e8;
	color: #c0392b;
	border-color: #c0392b;
}

.log-file-section {
	margin-top: 24px;
	background: #F3F3F3;
	border-radius: 8px;
	padding: 16px;
}

.log-file-section-title {
	font-size: 14px;
	font-weight: 600;
	color: #444;
	margin: 0 0 12px 0;
}

.log-file-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #FFFFFF;
}

.log-file-icon {
	flex-shrink: 0;
	color: #3894FF;;
	display: flex;
	align-items: center;
}

.log-file-info {
	flex: 1;
	min-width: 0;
}

.log-file-name {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.log-file-date {
	font-size: 12px;
	color: #666;
	margin-top: 2px;
}

.log-file-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}



.log-collection-actions {
	margin-top: 16px;
}

.log-collection-actions-description {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	margin: 0 0 12px 0;
	line-height: 1.5;
}

.collect-logs-page-description {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	margin: 0 0 8px 8px;
	line-height: 1.5;
}

.send-feedback-page-description {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	margin: 0 0 8px 8px;
	line-height: 1.5;
}

.send-feedback-field-group {
	margin-bottom: 16px;
}

.send-feedback-field-group:last-child {
	margin-bottom: 0;
}

.send-feedback-logs-description {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	margin: 0 0 12px 0;
	line-height: 1.5;
}

.send-feedback-log-level {
	margin-bottom: 12px;
}

.send-feedback-attachments {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.send-feedback-attachments-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.send-feedback-file-size-note {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	font-style: italic;
}

.send-feedback-attachment-tiles-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.send-feedback-attachment-count {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
}

.send-feedback-attachment-tiles {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}

.send-feedback-attachment-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90px;
	gap: 3px;
}

.send-feedback-attachment-thumbnail {
	position: relative;
	width: 80px;
	height: 80px;
	background: #f3f3f3;
	border: 1.5px solid #e0e0e0;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
}

.send-feedback-attachment-tile.oversized .send-feedback-attachment-thumbnail {
	border-color: #e67e22;
	background: #fff8f0;
	color: #e67e22;
}

.send-feedback-attachment-delete-btn {
	position: absolute;
	top: -9px;
	right: -9px;
	width: 22px;
	height: 22px;
	background: #fff;
	border: 1.5px solid #d0d0d0;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: #444;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.send-feedback-attachment-delete-btn svg {
	width: 13px;
	height: 13px;
}

.send-feedback-attachment-delete-btn:hover {
	background: #fde8e8;
	color: #c0392b;
	border-color: #c0392b;
}

.send-feedback-attachment-tile-name {
	font-size: 11px;
	font-weight: 500;
	color: #000000;
	width: 80px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.send-feedback-attachment-tile-size {
	font-size: 11px;
	color: var(--settings-text-secondary, #5a5a5a);
}

.send-feedback-attachment-tile-size.oversized {
	color: #e67e22;
}

.send-feedback-footer {
	margin-top: 8px;
	padding: 0 0 16px 0;
}

.send-feedback-report-created {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.send-feedback-report-created-header {
	display: flex;
	align-items: center;
	gap: 8px;
}

.send-feedback-report-created-title {
	font-size: 14px;
	font-weight: 600;
	color: #2e7d32;
}

.send-feedback-report-created-path {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	margin: 0;
	line-height: 1.5;
}

.send-feedback-report-link {
	color: #0045db;
	text-decoration: none;
	word-break: break-all;
}

.send-feedback-report-link:hover {
	text-decoration: underline;
}

.send-feedback-report-email-label {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	margin: 4px 0 0 0;
	line-height: 1.5;
}

.send-feedback-report-email-row {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 8px 12px;
	width: fit-content;
}

.send-feedback-report-email-link {
	font-size: 13px;
	color: #0045db;
	text-decoration: none;
}

.send-feedback-report-email-link:hover {
	text-decoration: underline;
}



.checkbox-group {
	display: flex;
	gap: 12px;
}

.checkbox-group-vertical {
	flex-direction: column;
}

.checkbox-group-horizontal {
	flex-direction: row;
	flex-wrap: wrap;
}

.checkbox-group-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 13px;
	color: #000000;
}

.checkbox-group-label input[type='checkbox'] {
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0;
	border-radius: 4px;
	border: 1px solid #767676;
	appearance: none;
	-webkit-appearance: none;
	background: #ffffff;
}

.checkbox-group-label input[type='checkbox']:checked {
	border-radius: 4px;
	background: var(--Primary-color, #0045DB);
	border-color: var(--Primary-color, #0045DB);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}

.checkbox-group-label-disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.checkbox-group-label-disabled input[type='checkbox'] {
	cursor: not-allowed;
}

.checkbox-group-label span {
	user-select: none;
}

.check-configuration-page-description {
	font-size: 13px;
	color: var(--settings-text-secondary, #5a5a5a);
	margin: 0 0 8px 8px;
	line-height: 1.5;
}

.check-configuration-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.check-configuration-content .checkbox-group {
	margin-top: 8px;
}

.check-configuration-run-button {
	margin-top: 8px;
	align-self: flex-start;
}

/* Progress section */
.check-configuration-progress {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.check-configuration-progress-bar-container {
	width: 100%;
}

.check-configuration-progress-bar {
	width: 100%;
	height: 8px;
	background-color: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.check-configuration-progress-bar-fill {
	height: 100%;
	width: 33%;
	background-color: #0078d4;
	animation: progress-animation 2s ease-in-out infinite;
}

@keyframes progress-animation {
	0% {
		width: 0%;
		margin-left: 0%;
	}
	50% {
		width: 50%;
		margin-left: 25%;
	}
	100% {
		width: 0%;
		margin-left: 100%;
	}
}

.check-configuration-progress-text {
	font-size: 13px;
	color: #000000;
	margin: 0;
}

/* Results section */
.check-configuration-results {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.check-configuration-results-header {
	display: flex;
	justify-content: flex-end;
	align-self: flex-end;
}

/* Status icons */
.check-configuration-status-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.check-configuration-status-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Version Information */
.version-info {
	padding-top: 8px;
	padding-left: 0px;
	padding-bottom: 4px;
	border-top: 1px solid #d9d9d9;
	background: #ffffff;
	flex-shrink: 0;
	text-align: left;
	margin: 0;
}

.version-text {
	font-size: 10px;
	color: #555555;
	margin-bottom: 4px;
	line-height: 1.5;
	font-weight: 600;
}

.copyright-text {
	font-size: 10px;
	color: #555555;
	margin-bottom: 0;
	line-height: 1.5;
}

.third-party-link {
	font-size: 10px;
	color: #0045db;
	text-decoration: underline;
	display: block;
	margin-top: 6px;
	line-height: 1.5;
	cursor: pointer;
}

.third-party-link:hover {
	text-decoration: underline;
}

/* Settings Panel Styles - Extracted from SettingsLayout.css */
.settings-nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.settings-nav-item {
	width: 100%;
	height: 48px;
	padding: 4px 12px;
	border: none;
	background: none;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.15s ease;
	display: flex;
	align-items: center;
	gap: 12px;
	border-left: 3px solid transparent;
	position: relative;
	border-radius: 2px;
	box-sizing: border-box;
}

.settings-nav-item:hover {
	background: #e8e8e8;
}

.settings-nav-item.active {
	background: #E1F4FF;
	border-left-color: #0045DB;
}

.settings-nav-item:focus-visible {
	outline: 2px solid #0045DB;
	outline-offset: -2px;
}

.nav-item-icon {
	font-size: 14px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #424242;
	flex-shrink: 0;
}

.settings-nav-item.active .nav-item-icon {
	color: #0045DB;
}

.nav-item-label {
	flex: 1;
	font-size: 14px;
	font-weight: 400;
	color: #171717;
	line-height: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Settings Layout - Citrix Workspace App Style */
.settings-layout {
height: 100vh;
display: flex;
flex-direction: column;
font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #f5f5f5;
color: #000000;
}

/* Header Section */
.settings-header {
background: #ffffff;
border-bottom: 1px solid #e0e0e0;
padding: 12px 20px;
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
}

.app-icon {
font-size: 20px;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}

.app-title {
font-size: 14px;
font-weight: 400;
color: #000000;
margin: 0;
}

/* Split Layout Container */
.settings-content {
	flex: 1;
	display: flex;
	flex-direction: row;
	overflow: hidden;
	min-height: 0;
	gap: 21px;
	padding: 24px;
	box-sizing: border-box;
	background: #ffffff;
}

/* Left Sidebar */
.settings-sidebar {
	width: 243px;
	min-width: 243px;
	max-width: 243px;
	background: #ffffff;
	overflow-y: auto;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	padding: 0;
	gap: 24px;
	/* Hide scrollbar for IE, Edge and Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	/* Enable smooth scrolling on touch devices */
	-webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.settings-sidebar::-webkit-scrollbar {
	display: none;
}

/* Main Content Area */
.settings-main-content {
	flex: 1;
	background: #f3f3f3;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	/* Hide scrollbar for IE, Edge and Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	/* Enable smooth scrolling on touch devices */
	-webkit-overflow-scrolling: touch;
}

.settings-main-inner {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.settings-main-content::-webkit-scrollbar {
	display: none;
}

/* Content states */
.content-error,
.content-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 48px 32px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}.content-placeholder h2 {
color: #000000;
font-size: 18px;
font-weight: 600;
margin: 0 0 12px 0;
}

.content-placeholder p {
color: #616161;
font-size: 14px;
margin: 0;
line-height: 1.5;
}

.error-message {
color: #d13438;
font-size: 14px;
margin: 0 0 24px 0;
font-weight: 500;
}

.retry-button {
background: #0078d4;
color: #ffffff;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 400;
transition: background-color 0.2s ease;
}

.retry-button:hover {
background: #106ebe;
}

.retry-button:active {
background: #005a9e;
}

.retry-button:focus-visible {
outline: 2px solid #0078d4;
outline-offset: 2px;
}

/* Focus states for accessibility */
.settings-sidebar:focus-visible {
outline: 2px solid #0078d4;
outline-offset: -2px;
}

/* Scrollbars are now hidden - removed visible scrollbar styling */

/* Progressive Loader Component */
.progressive-loader-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	min-height: 200px;
}

/* Spinner Animation */
.progressive-loader-spinner {
	width: 24px;
	height: 24px;
	border: 3px solid #e0e0e0;
	border-top-color: #0045DB;
	border-radius: 50%;
	animation: progressive-loader-spin 0.8s linear infinite;
	margin-bottom: 8px;
}

@keyframes progressive-loader-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Loading Text */
.progressive-loader-text {
	font-size: 14px;
	color: #464646;
	margin: 0;
	text-align: center;
	line-height: 1.5;
}

/* Error State */
.progressive-loader-error {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 400px;
}

.progressive-loader-error-illustration {
	width: 240px;
	height: 240px;
	margin-bottom: 8px;
}

.progressive-loader-error-illustration .person-illustration {
	animation: progressive-loader-float 3s ease-in-out infinite;
}

.progressive-loader-error-illustration .warning-icon {
	animation: progressive-loader-shake 0.5s ease-in-out 0.5s;
}

@keyframes progressive-loader-float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes progressive-loader-shake {
	0%, 100% {
		transform: translate(140px, 90px) rotate(0deg);
	}
	25% {
		transform: translate(140px, 90px) rotate(-3deg);
	}
	75% {
		transform: translate(140px, 90px) rotate(3deg);
	}
}

.progressive-loader-error-message {
	font-size: 14px;
	color: #464646;
	margin: 0;
	text-align: center;
	line-height: 1.5;
}

.progressive-loader-retry-button {
	margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.progressive-loader-container {
		padding: 32px 16px;
		min-height: 180px;
	}

	.progressive-loader-spinner {
		width: 36px;
		height: 36px;
		border-width: 2.5px;
	}
}


/*# sourceMappingURL=main.8c6641e010692d5a3251.css.map*/