.easydo-app-shell {
	--easydo-bg: #f4f7f8;
	--easydo-surface: #ffffff;
	--easydo-surface-soft: #f8fbfb;
	--easydo-surface-muted: #e8eeef;
	--easydo-text: #384047;
	--easydo-text-soft: #6c7a82;
	--easydo-text-faint: #8a97a0;
	--easydo-border: #d6dcde;
	--easydo-border-strong: #b7c4c8;
	--easydo-shadow: none;
	--easydo-shadow-soft: none;
	--easydo-accent: #4bc970;
	--easydo-accent-soft: #5f6e78;
	--easydo-success: #4bc970;
	--easydo-sidebar-bg: #edf3f4;
	max-width: 1320px;
	margin: 0 auto;
	background: var(--easydo-bg);
	color: var(--easydo-text);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: none;
	container-type: inline-size;
}

.easydo-app-shell *,
.easydo-app-shell *::before,
.easydo-app-shell *::after {
	box-sizing: border-box;
}

.easydo-app-shell a {
	text-decoration: none;
}

.easydo-app-shell button,
.easydo-app-shell input,
.easydo-app-shell textarea {
	font: inherit;
}

.easydo-app-shell svg {
	display: block;
	width: 1em;
	height: 1em;
}

.easydo-app-main {
	padding: 28px 38px 44px;
	min-width: 0;
}

.easydo-top-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
	padding-bottom: 6px;
}

.easydo-top-tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #d6dcde;
	color: var(--easydo-text-soft);
	font-size: 13px;
	font-weight: 800;
	transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.easydo-top-tab:visited {
	color: var(--easydo-text-soft);
}

.easydo-top-tab:hover {
	background: #eef6f1;
	color: #3ea760;
	border-color: #b9d9c3;
}

.easydo-top-tab:hover:visited,
.easydo-top-tab:hover *,
.easydo-top-tab:hover svg {
	color: #3ea760;
}

.easydo-top-tab.is-active {
	background: rgba(75, 201, 112, 0.12);
	color: #2d3b40;
	border-color: rgba(75, 201, 112, 0.35);
	box-shadow: none;
}

.easydo-top-tab.is-active:visited {
	color: #2d3b40;
}

.easydo-top-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-size: 16px;
}

.easydo-page-header {
	margin-bottom: 22px;
}

.easydo-page-title {
	margin: 0;
	font-size: 40px;
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--easydo-text);
}

.easydo-page-subtitle {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--easydo-text-soft);
	max-width: 720px;
}

.easydo-front-notice {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding: 16px 18px;
	border-radius: 18px;
	font-weight: 700;
	box-shadow: var(--easydo-shadow-soft);
}

.easydo-front-notice.is-success {
	background: linear-gradient(135deg, #4bc970 0%, #43b867 100%);
	color: #ffffff;
}

.easydo-front-notice.is-error {
	background: #ffffff;
	border: 1px solid #dbe2e4;
	color: var(--easydo-text);
}

.easydo-contact-fallback {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid #dbe4de;
	border-radius: 12px;
	background: #f8fbf9;
	color: var(--easydo-text-soft);
}

.easydo-contact-fallback-title {
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 800;
	color: var(--easydo-text);
}

.easydo-contact-fallback p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
}

.easydo-inline-icon,
.easydo-front-notice .easydo-inline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-size: 16px;
	flex-shrink: 0;
	line-height: 1;
}

.easydo-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 360px);
	gap: 22px;
	align-items: start;
}

.easydo-content-grid-single {
	grid-template-columns: minmax(0, 1fr);
}

.easydo-primary-column,
.easydo-secondary-column {
	display: grid;
	gap: 20px;
	min-width: 0;
}

.easydo-surface-card {
	background: var(--easydo-surface);
	border: 1px solid rgba(138, 151, 160, 0.2);
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--easydo-shadow-soft);
}

.easydo-surface-card-soft {
	background: var(--easydo-surface-soft);
}

.easydo-card-heading {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--easydo-text);
}

.easydo-card-subtitle {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--easydo-text-soft);
}

.easydo-announcement-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: start;
	overflow: hidden;
}

.easydo-announcement-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #e8edf3;
	color: var(--easydo-accent);
	font-size: 24px;
}

.easydo-announcement-copy {
	min-width: 0;
}

.easydo-announcement-text {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.85;
	color: var(--easydo-text-soft);
}

.easydo-announcement-text p {
	margin: 0;
}

.easydo-announcement-link-row {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 12px;
	font-weight: 700;
	color: #5d6975;
}

.easydo-announcement-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(75, 201, 112, 0.12);
	color: #4bc970;
	font-size: 20px;
}

.easydo-form-card {
	padding: 28px 24px 24px;
}

.easydo-form-stack {
	display: grid;
	gap: 24px;
}

.easydo-field-group {
	display: grid;
	gap: 12px;
}

.easydo-label {
	font-size: 15px;
	font-weight: 800;
	color: var(--easydo-text);
}

.easydo-required {
	color: #b91c1c;
}

.easydo-category-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.easydo-category-card {
	position: relative;
	display: inline-block;
}

.easydo-category-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.easydo-category-card-face {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	padding: 7px 12px;
	border-radius: 10px;
	background: #e8eeef;
	border: 2px solid transparent;
	color: var(--easydo-accent-soft);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.easydo-category-card-face:hover {
	background: #edf6f0;
}

.easydo-category-card input:checked + .easydo-category-card-face {
	background: #ffffff;
	border-color: #4bc970;
	color: #2d3b40;
	box-shadow: none;
}

.easydo-category-icon {
	font-size: 16px;
}

.easydo-category-text {
	font-size: 14px;
	font-weight: 800;
	color: inherit;
}

.easydo-input-wrap {
	position: relative;
}

.easydo-input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-size: 16px;
	color: #9aa4b1;
	pointer-events: none;
}

.easydo-input,
.easydo-textarea {
	width: 100%;
	border: 1px solid var(--easydo-border);
	background: #f8fbfb;
	border-radius: 16px;
	padding: 15px 18px;
	color: var(--easydo-text);
	transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.easydo-input-with-icon {
	padding-left: 46px;
}

.easydo-textarea {
	min-height: 180px;
	resize: vertical;
}

.easydo-input::placeholder,
.easydo-textarea::placeholder {
	color: #9aa4b1;
}

.easydo-input:focus,
.easydo-textarea:focus {
	outline: none;
	border-color: #4bc970;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(75, 201, 112, 0.16);
}

.easydo-upload-tile {
	width: 78px;
	height: 78px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed #c9d4d8;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
	color: #8a97a0;
	cursor: pointer;
	transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
	flex: 0 0 78px;
}

.easydo-upload-tile:hover {
	border-color: #4bc970;
	background: #ffffff;
	color: #4bc970;
	transform: translateY(-2px);
}

.easydo-upload-tile-plus {
	font-size: 38px;
	line-height: 1;
	font-weight: 300;
}

.easydo-upload-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex-wrap: wrap;
}

.easydo-upload-hint {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	line-height: 1.75;
	color: #75808d;
}

.easydo-upload-hint p {
	margin: 0;
}

.easydo-help-link {
	color: #3ea760;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.easydo-help-link:visited,
.easydo-help-link:hover,
.easydo-help-link:active,
.easydo-help-link:focus {
	color: #3ea760;
}

.easydo-help-link:hover {
	color: #3ea760;
	text-decoration: underline;
}

.easydo-upload-preview-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: flex-start;
}

.easydo-upload-preview-item {
	position: relative;
	width: 78px;
	height: 78px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #dbe2ea;
	background: #f4f6f8;
	box-shadow: none;
}

.easydo-upload-preview-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.easydo-upload-preview-remove {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 999px;
	background: rgba(17, 24, 34, 0.82);
	color: #ffffff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.easydo-upload-preview-remove:hover {
	background: #3fb863;
}

.easydo-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.easydo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 112px;
	min-height: 42px;
	padding: 10px 18px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.easydo-button-primary {
	background: #4bc970;
	color: #ffffff;
	box-shadow: none;
}

.easydo-button-primary:hover {
	background: #3fb863;
	color: #ffffff;
}

.easydo-submit-main-button {
	min-width: 92px;
	min-height: 36px;
	padding: 8px 16px;
	font-size: 14px;
	border-radius: 10px;
}

.easydo-button-secondary {
	background: #ffffff;
	border-color: #cdd7da;
	color: #384047;
}

.easydo-button-secondary:hover {
	background: #f1f6f4;
	border-color: #b9d9c3;
	color: #2d3b40;
}

.easydo-button-block {
	width: 100%;
}

.easydo-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.easydo-side-card {
	padding: 22px 20px;
}

.easydo-side-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 800;
	color: var(--easydo-text);
}

.easydo-side-title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: #edf1f5;
	color: #121822;
	font-size: 14px;
}

.easydo-faq-list {
	display: grid;
	gap: 12px;
}

.easydo-faq-item {
	background: #ffffff;
	border: 1px solid rgba(17, 24, 34, 0.08);
	border-radius: 16px;
	padding: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.easydo-faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(17, 20, 24, 0.06);
	border-color: rgba(17, 24, 34, 0.13);
}

.easydo-faq-item h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
	color: var(--easydo-text);
}

.easydo-faq-item p {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.7;
	color: var(--easydo-text-soft);
}

.easydo-help-card {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 22px;
	border-radius: 24px;
	background: linear-gradient(135deg, #151c25 0%, #444e5a 100%);
	color: #ffffff;
	box-shadow: 0 24px 44px rgba(17, 24, 34, 0.18);
}

.easydo-help-card-copy {
	position: relative;
	z-index: 1;
}

.easydo-help-card h3 {
	margin: 0;
	font-size: 26px;
	line-height: 1.1;
	font-weight: 800;
}

.easydo-help-card p {
	margin: 12px 0 18px;
	font-size: 13px;
	line-height: 1.8;
	max-width: 250px;
	color: rgba(255, 255, 255, 0.82);
}

.easydo-help-card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	backdrop-filter: blur(10px);
}

.easydo-help-card-button:hover {
	background: rgba(255, 255, 255, 0.22);
	color: #ffffff;
}

.easydo-help-card-mark {
	position: absolute;
	right: -8px;
	bottom: -8px;
	font-size: 80px;
	color: rgba(255, 255, 255, 0.09);
}

.easydo-team-card {
	overflow: hidden;
	border-radius: 24px;
	background: #111821;
	box-shadow: 0 24px 44px rgba(17, 24, 34, 0.18);
}

.easydo-team-card-compact {
	background: #ffffff;
	box-shadow: var(--easydo-shadow-soft);
	border: 1px solid rgba(17, 24, 34, 0.06);
}

.easydo-team-art {
	aspect-ratio: 16 / 9;
}

.easydo-team-art svg {
	width: 100%;
	height: 100%;
}

.easydo-team-copy {
	padding: 16px 18px 18px;
}

.easydo-team-card:not(.easydo-team-card-compact) .easydo-team-copy {
	color: #ffffff;
}

.easydo-team-card-compact .easydo-team-copy {
	color: var(--easydo-text);
}

.easydo-team-copy h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 800;
}

.easydo-team-copy p {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.7;
	color: inherit;
	opacity: 0.82;
}

.easydo-summary-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.easydo-summary-item {
	padding: 8px 4px;
}

.easydo-summary-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--easydo-text-soft);
}

.easydo-summary-value {
	display: block;
	margin-top: 8px;
	font-size: 34px;
	line-height: 1;
	font-weight: 800;
	color: var(--easydo-text);
}

.easydo-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 20px;
}

.easydo-inline-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 8px 14px;
	border-radius: 10px;
	background: #4bc970;
	box-shadow: none;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.easydo-inline-link:hover {
	background: #3fb863;
	color: #ffffff;
}

.easydo-inline-link:visited,
.easydo-inline-link:active,
.easydo-inline-link:focus {
	color: #ffffff;
}

.easydo-inline-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-size: 14px;
}

.easydo-empty-card {
	display: grid;
	justify-items: start;
	gap: 12px;
	padding: 18px;
	border-radius: 20px;
	background: #f5f7f9;
	border: 1px dashed #d2dae2;
}

.easydo-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: #121822;
	color: #ffffff;
	font-size: 24px;
}

.easydo-empty-card h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
}

.easydo-empty-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--easydo-text-soft);
	max-width: 520px;
}

.easydo-ticket-list {
	display: grid;
	gap: 14px;
}

.easydo-ticket-table-wrap {
	overflow: hidden;
	border: 1px solid #e3e9ea;
	border-radius: 18px;
	background: #ffffff;
}

.easydo-ticket-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.easydo-ticket-col-main {
	width: 60%;
}

.easydo-ticket-col-updated {
	width: 18%;
}

.easydo-ticket-col-status {
	width: 14%;
}

.easydo-ticket-col-action {
	width: 8%;
}

.easydo-ticket-table thead th {
	padding: 15px 18px;
	border-bottom: 1px solid #edf1f2;
	background: #fafcfc;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: #8a97a0;
	text-align: left;
	white-space: nowrap;
	text-transform: uppercase;
}

.easydo-ticket-table tbody td {
	padding: 16px 18px;
	border-bottom: 1px solid #edf1f2;
	font-size: 14px;
	color: var(--easydo-text);
	vertical-align: middle;
}

.easydo-ticket-table tbody tr:last-child td {
	border-bottom: 0;
}

.easydo-ticket-table tbody tr {
	transition: background-color 0.18s ease;
}

.easydo-ticket-table tbody tr:hover {
	background: #f7fbf8;
}

.easydo-ticket-table tbody tr.is-active {
	background: rgba(75, 201, 112, 0.08);
}

.easydo-ticket-table-link {
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.easydo-ticket-table-link:visited {
	color: inherit;
}

.easydo-ticket-table-main {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.easydo-ticket-table-number {
	font-size: 15px;
	font-weight: 800;
	color: #2d3b40;
	line-height: 1.2;
}

.easydo-ticket-table-excerpt {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--easydo-text-soft);
	font-size: 13px;
}

.easydo-ticket-table-date {
	font-size: 13px;
	color: #61717a;
}

.easydo-ticket-table-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 10px;
	background: #eef6f1;
	color: #4bc970;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.easydo-ticket-table-action:hover {
	background: #3fb863;
	color: #ffffff;
	text-decoration: none;
}

.easydo-ticket-table-action svg {
	width: 16px;
	height: 16px;
}

.easydo-ticket-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 18px 20px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid #e1e6ec;
	color: var(--easydo-text);
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.easydo-ticket-row:hover,
.easydo-ticket-row.is-active {
	border-color: #121822;
	box-shadow: none;
	transform: none;
}

.easydo-ticket-row-main {
	min-width: 0;
	display: grid;
	gap: 10px;
}

.easydo-ticket-row-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.easydo-ticket-row-number {
	font-size: 15px;
	font-weight: 800;
	color: var(--easydo-text);
}

.easydo-ticket-row-excerpt {
	font-size: 14px;
	line-height: 1.7;
	color: var(--easydo-text-soft);
}

.easydo-ticket-row-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.easydo-ticket-meta-chip,
.easydo-status-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	min-width: 54px;
	padding: 4px 9px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.easydo-ticket-meta-chip {
	padding: 5px 10px;
	background: #f1f4f5;
	color: #6f7d86;
}

.easydo-status-pill.easydo-status-open {
	background: #4bc970;
	color: #ffffff;
}

.easydo-status-pill.easydo-status-closed {
	background: #eceff3;
	color: #5f6975;
}

.easydo-ticket-row-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #edf3f4;
	color: #4bc970;
	font-size: 16px;
}

.easydo-ticket-detail-card {
	display: grid;
	gap: 18px;
}

.easydo-detail-ticket-number {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 10px;
	background: #4bc970;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
}

.easydo-chat-meta-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f8fbfb;
	border: 1px solid #dde5e6;
}

.easydo-chat-meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 32px;
	padding: 6px 10px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #e2e8e9;
	color: var(--easydo-text);
	font-size: 13px;
	line-height: 1;
}

.easydo-chat-meta-label {
	font-size: 12px;
	font-weight: 700;
	color: #8a97a0;
}

.easydo-chat-meta-chip strong {
	font-size: 13px;
	font-weight: 800;
	color: #2d3b40;
}

.easydo-message-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 4px 0;
}

.easydo-message-item {
	display: grid;
	gap: 10px;
	max-width: min(78%, 760px);
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid #dde5e6;
	box-shadow: none;
}

.easydo-message-item.is-user {
	margin-left: auto;
	background: linear-gradient(180deg, #f7fbf8 0%, #edf8f0 100%);
	border-color: #d2e8d8;
}

.easydo-message-item.is-admin {
	margin-right: auto;
	background: #ffffff;
}

.easydo-message-item-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.easydo-message-author {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--easydo-text);
}

.easydo-message-author-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #4bc970;
	color: #ffffff;
	font-size: 15px;
	flex-shrink: 0;
}

.easydo-message-item.is-admin .easydo-message-author-mark {
	background: #edf3f4;
	color: #4bc970;
}

.easydo-message-time {
	font-size: 12px;
	font-weight: 700;
	color: #8a97a0;
}

.easydo-message-body {
	font-size: 14px;
	line-height: 1.8;
	color: var(--easydo-text);
	word-break: break-word;
}

.easydo-message-body p {
	margin: 0 0 10px;
}

.easydo-message-body p:last-child {
	margin-bottom: 0;
}

.easydo-message-gallery {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-bottom: 4px;
	margin-top: 10px;
}

.easydo-message-image-link {
	flex: 0 0 auto;
	width: 110px;
	height: 110px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #dbe2ea;
	background: #f8fbfb;
	box-shadow: none;
	text-decoration: none;
}

.easydo-message-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.easydo-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(19, 27, 31, 0.78);
	backdrop-filter: blur(3px);
	cursor: zoom-out;
}

.easydo-lightbox[hidden] {
	display: none !important;
}

.easydo-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.easydo-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.26);
}

.easydo-lightbox-image {
	display: block;
	max-width: min(100%, 1080px);
	max-height: calc(100vh - 56px);
	border-radius: 20px;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

body.easydo-lightbox-open {
	overflow: hidden;
}

.easydo-closed-banner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 16px 18px;
	border-radius: 18px;
	background: #f1f6f4;
	color: #5c6671;
	border: 1px solid #dce9df;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 700;
}

.easydo-mini-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 14px;
}

.easydo-mini-stat {
	padding: 16px;
	border-radius: 16px;
	background: #f8fbfb;
	border: 1px solid #dde5e6;
}

.easydo-mini-stat span {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #7c8794;
}

.easydo-mini-stat strong {
	display: block;
	margin-top: 6px;
	font-size: 26px;
	line-height: 1;
	font-weight: 800;
	color: var(--easydo-text);
}

.easydo-side-note p {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--easydo-text-soft);
}

.easydo-check-list {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.easydo-check-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--easydo-text);
}

.easydo-check-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #edf6f1;
	color: #4bc970;
	font-size: 13px;
	flex-shrink: 0;
}

.easydo-guest-card {
	max-width: 540px;
	margin: 60px auto;
	display: grid;
	justify-items: start;
	gap: 14px;
}

.easydo-guest-card h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 800;
}

.easydo-guest-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: var(--easydo-text-soft);
}

.easydo-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
}

body.easydo-modal-open {
	overflow: hidden;
}

.easydo-modal[hidden] {
	display: none;
}

.easydo-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 12, 18, 0.52);
	backdrop-filter: blur(4px);
}

.easydo-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(92vw, 520px);
	margin: 8vh auto 0;
	padding: 24px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 34px 80px rgba(17, 24, 34, 0.22);
}

.easydo-modal-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.easydo-modal-head h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.1;
	font-weight: 800;
	color: var(--easydo-text);
}

.easydo-modal-head p {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--easydo-text-soft);
}

.easydo-modal-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: #eef2f5;
	color: #121822;
	cursor: pointer;
	font-size: 18px;
	transition: background-color 0.22s ease, transform 0.22s ease;
}

.easydo-modal-close:hover {
	background: #dde4eb;
	transform: rotate(90deg);
}

.easydo-modal-body {
	display: grid;
	gap: 12px;
}

.easydo-modal-tip {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: var(--easydo-text-soft);
}

.easydo-modal-actions {
	justify-content: flex-end;
	margin-top: 22px;
}

@container (max-width: 1220px) {
	.easydo-app-main {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@container (max-width: 980px) {
	.easydo-app-main {
		padding: 26px 20px 30px;
	}

	.easydo-content-grid {
		grid-template-columns: 1fr;
	}

	.easydo-secondary-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.easydo-announcement-card {
		grid-template-columns: 1fr;
	}

	.easydo-announcement-ghost {
		display: none;
	}
}

@container (max-width: 720px) {
	.easydo-secondary-column,
	.easydo-category-grid,
	.easydo-summary-strip,
	.easydo-mini-stats {
		grid-template-columns: 1fr;
	}

	.easydo-ticket-row,
	.easydo-ticket-row-top,
	.easydo-message-item-head,
	.easydo-button-row {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: stretch;
	}

	.easydo-button {
		width: 100%;
	}

	.easydo-ticket-row-arrow {
		display: none;
	}

	.easydo-top-tabs {
		display: grid;
		grid-template-columns: 1fr;
	}

	.easydo-upload-row {
		align-items: flex-start;
	}
}

@media (max-width: 1180px) {
	.easydo-app-main {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (max-width: 1040px) {
	.easydo-content-grid {
		grid-template-columns: 1fr;
	}

	.easydo-secondary-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.easydo-app-shell {
		border-radius: 0;
		box-shadow: none;
	}

	.easydo-app-main {
		padding: 24px 16px 28px;
	}

	.easydo-page-title {
		font-size: 30px;
	}

	.easydo-surface-card,
	.easydo-form-card,
	.easydo-modal-dialog {
		padding: 18px;
		border-radius: 14px;
	}

	.easydo-announcement-card {
		grid-template-columns: 1fr;
	}

	.easydo-announcement-ghost {
		display: none;
	}

	.easydo-category-grid,
	.easydo-mini-stats,
	.easydo-secondary-column {
		grid-template-columns: 1fr;
	}

	.easydo-summary-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.easydo-summary-item {
		padding: 4px 2px;
	}

	.easydo-summary-label {
		font-size: 12px;
	}

	.easydo-summary-value {
		margin-top: 6px;
		font-size: 24px;
	}

	.easydo-ticket-row,
	.easydo-ticket-row-top,
	.easydo-message-item-head,
	.easydo-button-row {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: stretch;
	}

	.easydo-message-item {
		max-width: 100%;
	}

	.easydo-chat-meta-bar {
		padding: 12px;
	}

	.easydo-message-gallery {
		gap: 8px;
	}

	.easydo-message-image-link {
		width: 88px;
		height: 88px;
	}

	.easydo-inline-link {
		width: 100%;
		justify-content: center;
	}

	.easydo-ticket-table-wrap {
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.easydo-ticket-table,
	.easydo-ticket-table colgroup,
	.easydo-ticket-table tbody,
	.easydo-ticket-table tr,
	.easydo-ticket-table td {
		display: block;
		width: 100%;
	}

	.easydo-ticket-table thead {
		display: none;
	}

	.easydo-ticket-table tbody {
		display: grid;
		gap: 10px;
	}

	.easydo-ticket-table tbody tr {
		padding: 12px 12px 10px;
		border: 1px solid #e8edee;
		border-radius: 12px;
		background: #ffffff;
		box-shadow: none;
	}

	.easydo-ticket-table tbody tr.is-active {
		background: #f8fcf9;
		border-color: #d8e9dd;
	}

	.easydo-ticket-table tbody td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 9px 0;
		border-bottom: 1px solid #f0f3f4;
		text-align: right;
	}

	.easydo-ticket-table tbody td:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.easydo-ticket-table tbody td:first-child {
		align-items: flex-start;
		padding-top: 0;
	}

	.easydo-ticket-table tbody td::before {
		content: attr(data-label);
		flex: 0 0 auto;
		font-size: 11px;
		font-weight: 800;
		letter-spacing: 0.03em;
		color: #8a97a0;
		text-transform: uppercase;
		text-align: left;
	}

	.easydo-ticket-table-main {
		justify-items: end;
		text-align: right;
		gap: 4px;
	}

	.easydo-ticket-table-number {
		font-size: 13px;
	}

	.easydo-ticket-table-excerpt,
	.easydo-ticket-table-date {
		font-size: 12px;
	}

	.easydo-status-pill {
		min-width: 54px;
		min-height: 26px;
		padding: 4px 9px;
		font-size: 10px;
	}

	.easydo-ticket-table-date {
		justify-content: flex-end;
	}

	.easydo-ticket-table-action {
		margin-left: auto;
	}

	.easydo-button {
		width: 100%;
	}

	.easydo-ticket-row-arrow {
		display: none;
	}

	.easydo-top-tabs {
		grid-template-columns: 1fr;
	}
}
