* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #0073EF;
	--primary-dark: #0056CC;
	--primary-light: #E8F1FE;
	--secondary: #FF6B00;
	--success: #00A644;
	--warning: #FFB800;
	--danger: #EF3F40;
	--dark: #1A1A2E;
	--gray-900: #2D2D3F;
	--gray-700: #5A5A6E;
	--gray-500: #8B8B9E;
	--gray-300: #C5C5D0;
	--gray-100: #F0F0F5;
	--white: #FFFFFF;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 12px rgba(0,0,0,0.1);
	--shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--gray-100);
	color: var(--dark);
	max-width: 480px;
	margin: 0 auto;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

/* Login Page */
.login-page {
	min-height: 100vh;
	background: linear-gradient(135deg, #0073EF 0%, #0056CC 50%, #003D99 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	position: relative;
	overflow: hidden;
}

.login-page::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -30%;
	width: 400px;
	height: 400px;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
}

.login-page::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -20%;
	width: 300px;
	height: 300px;
	background: rgba(255,255,255,0.03);
	border-radius: 50%;
}

.login-logo {
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.2);
	position: relative;
	z-index: 1;
}

.login-logo svg {
	width: 48px;
	height: 48px;
}

.login-title {
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: white;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}

.login-subtitle {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.login-form {
	background: white;
	border-radius: var(--radius-xl);
	padding: 32px 24px;
	width: 100%;
	max-width: 380px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.15);
	position: relative;
	z-index: 1;
}

.login-form h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 4px;
}

.login-form p {
	font-size: 13px;
	color: var(--gray-500);
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-700);
	margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--gray-300);
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	transition: all 0.2s;
	background: var(--gray-100);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
	box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	border: none;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
	transition: all 0.2s;
	width: 100%;
}

.btn-primary {
	background: var(--primary);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-dark);
}

.btn-success {
	background: var(--success);
	color: white;
}

.btn-success:hover {
	background: #008F3A;
}

.btn-warning {
	background: var(--warning);
	color: var(--dark);
}

.btn-outline {
	background: transparent;
	border: 1.5px solid var(--gray-300);
	color: var(--gray-700);
}

.btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.btn-sm {
	padding: 8px 16px;
	font-size: 12px;
}

.login-footer {
	text-align: center;
	margin-top: 20px;
	font-size: 13px;
	color: var(--gray-500);
}

.login-footer a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

/* Main App */
.app-container {
	padding-bottom: 80px;
}

/* Header */
.app-header {
	background: linear-gradient(135deg, #0073EF, #0056CC);
	padding: 16px 20px 20px;
	color: white;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.header-greeting {
	font-size: 12px;
	opacity: 0.85;
}

.header-name {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 600;
}

.header-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.header-btn {
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.2);
	border: none;
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
}

.notif-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 16px;
	height: 16px;
	background: var(--danger);
	border-radius: 50%;
	font-size: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.header-search {
	position: relative;
}

.header-search input {
	width: 100%;
	padding: 10px 14px 10px 40px;
	border: none;
	border-radius: var(--radius-sm);
	background: rgba(255,255,255,0.2);
	color: white;
	font-size: 13px;
	font-family: 'Inter', sans-serif;
}

.header-search input::placeholder {
	color: rgba(255,255,255,0.6);
}

.header-search svg {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.6;
}

/* Content */
.app-content {
	padding: 0 16px;
}

/* Quick Actions */
.quick-actions {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 20px 0;
}

.quick-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.quick-action-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s;
}

.quick-action:active .quick-action-icon {
	transform: scale(0.92);
}

.quick-action-icon.blue { background: var(--primary-light); color: var(--primary); }
.quick-action-icon.green { background: #E6F9EE; color: var(--success); }
.quick-action-icon.orange { background: #FFF3E0; color: var(--secondary); }
.quick-action-icon.red { background: #FDE8E8; color: var(--danger); }

.quick-action span {
	font-size: 11px;
	font-weight: 500;
	color: var(--gray-700);
	text-align: center;
}

/* Section */
.section {
	margin-bottom: 20px;
	margin-top: 20px;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
}

.section-link {
	font-size: 13px;
	color: var(--primary);
	font-weight: 500;
	cursor: pointer;
}

/* Stats Cards */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.stat-card {
	background: white;
	border-radius: var(--radius-md);
	padding: 16px;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}

.stat-card::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	border-radius: 0 0 0 60px;
	opacity: 0.1;
}

.stat-card.blue::after { background: var(--primary); }
.stat-card.green::after { background: var(--success); }
.stat-card.orange::after { background: var(--secondary); }
.stat-card.red::after { background: var(--danger); }

.stat-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.stat-icon.blue { background: var(--primary-light); color: var(--primary); }
.stat-icon.green { background: #E6F9EE; color: var(--success); }
.stat-icon.orange { background: #FFF3E0; color: var(--secondary); }
.stat-icon.red { background: #FDE8E8; color: var(--danger); }

.stat-value {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 2px;
}

.stat-label {
	font-size: 12px;
	color: var(--gray-500);
}

/* Weather Widget */
.weather-widget {
	background: linear-gradient(135deg, #4A90D9, #357ABD);
	border-radius: var(--radius-lg);
	padding: 16px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	box-shadow: var(--shadow-md);
}

.weather-info h3 {
	font-size: 13px;
	opacity: 0.85;
	margin-bottom: 4px;
}

.weather-temp {
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 700;
}

.weather-desc {
	font-size: 12px;
	opacity: 0.8;
}

.weather-icon {
	font-size: 48px;
}

/* Project Card */
.project-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 16px;
	margin-bottom: 12px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
}

.project-card:active {
	transform: scale(0.98);
}

.project-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.project-thumb {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	flex-shrink: 0;
	background: var(--gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
}

.project-thumb svg {
	width: 24px;
	height: 24px;
	color: var(--primary);
}

.project-info {
	flex: 1;
	min-width: 0;
}

.project-name {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.project-location {
	font-size: 12px;
	color: var(--gray-500);
	display: flex;
	align-items: center;
	gap: 4px;
}

.project-status {
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	flex-shrink: 0;
}

.status-progress { background: #E8F5E9; color: #2E7D32; }
.status-planning { background: #FFF3E0; color: #E65100; }
.status-done { background: #E3F2FD; color: #1565C0; }
.status-hold { background: #FDE8E8; color: #C62828; }

.project-progress {
	margin-top: 10px;
}

.progress-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
}

.progress-label {
	font-size: 12px;
	color: var(--gray-500);
}

.progress-value {
	font-size: 12px;
	font-weight: 600;
	color: var(--primary);
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: var(--gray-100);
	border-radius: 3px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	border-radius: 3px;
	transition: width 1s ease;
}

.progress-fill.blue { background: linear-gradient(90deg, #0073EF, #4A9BFF); }
.progress-fill.green { background: linear-gradient(90deg, #00A644, #00D45A); }
.progress-fill.orange { background: linear-gradient(90deg, #FF6B00, #FF9A44); }

.project-meta {
	display: flex;
	gap: 16px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--gray-100);
}

.meta-item {
	font-size: 11px;
	color: var(--gray-500);
	display: flex;
	align-items: center;
	gap: 4px;
}

/* Report Card */
.report-card {
	background: white;
	border-radius: var(--radius-md);
	padding: 14px;
	margin-bottom: 10px;
	box-shadow: var(--shadow-sm);
	border-left: 4px solid var(--primary);
}

.report-card.warning { border-left-color: var(--warning); }
.report-card.danger { border-left-color: var(--danger); }
.report-card.success { border-left-color: var(--success); }

.report-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}

.report-title {
	font-weight: 600;
	font-size: 14px;
}

.report-date {
	font-size: 11px;
	color: var(--gray-500);
}

.report-body {
	font-size: 13px;
	color: var(--gray-700);
	line-height: 1.5;
	margin-bottom: 8px;
}

.report-images {
	display: flex;
	gap: 6px;
	margin-bottom: 8px;
}

.report-img {
	width: 64px;
	height: 64px;
	border-radius: 6px;
	background: var(--gray-100);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gray-300);
}

.report-img svg {
	width: 20px;
	height: 20px;
	color: var(--gray-500);
}

.report-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.report-author {
	font-size: 12px;
	color: var(--gray-500);
	font-weight: 500;
}

.report-tag {
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 600;
}

.tag-daily { background: var(--primary-light); color: var(--primary); }
.tag-weekly { background: #E6F9EE; color: var(--success); }
.tag-issue { background: #FDE8E8; color: var(--danger); }

/* Bottom Nav */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 480px;
	background: white;
	border-top: 1px solid var(--gray-300);
	display: flex;
	justify-content: space-around;
	padding: 8px 0;
	z-index: 200;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	cursor: pointer;
	padding: 4px 12px;
	border: none;
	background: none;
	transition: all 0.2s;
	position: relative;
	text-decoration: none;
}

.nav-item.active svg {
	color: var(--primary);
}

.nav-item.active span {
	color: var(--primary);
	font-weight: 600;
}

.nav-item svg {
	width: 22px;
	height: 22px;
	color: var(--gray-500);
	transition: color 0.2s;
}

.nav-item span {
	font-size: 10px;
	color: var(--gray-500);
	transition: color 0.2s;
}

/* Pages */
.page {
	display: none;
}

.page.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Project Detail */
.project-detail-header {
	background: linear-gradient(135deg, #0073EF, #0056CC);
	padding: 20px;
	color: white;
}

.detail-back {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	cursor: pointer;
}

.detail-back svg {
	width: 20px;
	height: 20px;
}

.detail-back span {
	font-size: 14px;
}

.detail-title {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.detail-location {
	font-size: 13px;
	opacity: 0.85;
	display: flex;
	align-items: center;
	gap: 6px;
}

.detail-content {
	padding: 16px;
}

.detail-progress-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 20px;
	box-shadow: var(--shadow-md);
	margin-bottom: 16px;
}

.detail-progress-circle {
	width: 120px;
	height: 120px;
	margin: 0 auto 16px;
	position: relative;
}

.detail-progress-circle svg {
	width: 120px;
	height: 120px;
	transform: rotate(-90deg);
}

.detail-progress-circle .bg {
	fill: none;
	stroke: var(--gray-100);
	stroke-width: 8;
}

.detail-progress-circle .fill {
	fill: none;
	stroke: var(--primary);
	stroke-width: 8;
	stroke-linecap: round;
	transition: stroke-dashoffset 1s ease;
}

.detail-progress-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--dark);
}

.detail-progress-label {
	text-align: center;
	font-size: 13px;
	color: var(--gray-500);
}

.task-list {
	margin-top: 16px;
}

.task-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--gray-100);
}

.task-item:last-child {
	border-bottom: none;
}

.task-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--gray-300);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.task-check.done {
	background: var(--success);
	border-color: var(--success);
	color: white;
}

.task-text {
	flex: 1;
	font-size: 13px;
}

.task-text.completed {
	text-decoration: line-through;
	color: var(--gray-500);
}

/* Report Form */
.report-form-page {
	background: white;
}

.form-page-header {
	background: linear-gradient(135deg, #0073EF, #0056CC);
	padding: 20px;
	color: white;
}

.photo-upload-area {
	border: 2px dashed var(--gray-300);
	border-radius: var(--radius-md);
	padding: 24px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: 16px;
}

.photo-upload-area:hover {
	border-color: var(--primary);
	background: var(--primary-light);
}

.photo-upload-area svg {
	width: 40px;
	height: 40px;
	color: var(--gray-500);
	margin-bottom: 8px;
}

.photo-upload-area p {
	font-size: 13px;
	color: var(--gray-500);
}

.photo-preview {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.preview-img {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	background: var(--gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.preview-img .remove-btn {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 20px;
	height: 20px;
	background: var(--danger);
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	cursor: pointer;
	border: none;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.photo-item {
	aspect-ratio: 1;
	border-radius: 6px;
	background: var(--gray-100);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Notification Panel */
.notification-panel {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 480px;
	height: 100vh;
	background: white;
	z-index: 300;
	transition: right 0.3s ease;
	overflow-y: auto;
}

.notification-panel.open {
	right: 0;
}

.notif-header {
	background: linear-gradient(135deg, #0073EF, #0056CC);
	padding: 20px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.notif-close {
	background: rgba(255,255,255,0.2);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.notif-item {
	padding: 16px 20px;
	border-bottom: 1px solid var(--gray-100);
	cursor: pointer;
}

.notif-item.unread {
	background: var(--primary-light);
}

.notif-item-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}

.notif-item-desc {
	font-size: 13px;
	color: var(--gray-500);
	line-height: 1.4;
}

.notif-item-time {
	font-size: 11px;
	color: var(--gray-500);
	margin-top: 4px;
}

/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 250;
	display: none;
}

.overlay.show {
	display: block;
}

/* Profile */
.profile-header {
	background: linear-gradient(135deg, #0073EF, #0056CC);
	padding: 30px 20px;
	color: white;
	text-align: center;
}

.profile-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 700;
	border: 3px solid rgba(255,255,255,0.4);
}

.profile-name {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 4px;
}

.profile-role {
	font-size: 13px;
	opacity: 0.85;
}

.profile-menu {
	padding: 16px;
}

.profile-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 12px;
	background: white;
	border-radius: var(--radius-sm);
	margin-bottom: 8px;
	cursor: pointer;
	transition: background 0.2s;
}

.profile-menu-item:active {
	background: var(--gray-100);
}

.profile-menu-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-menu-text {
	flex: 1;
}

.profile-menu-text h4 {
	font-size: 14px;
	font-weight: 600;
}

.profile-menu-text p {
	font-size: 12px;
	color: var(--gray-500);
}

.profile-menu-arrow {
	color: var(--gray-300);
}

.logout-btn {
	margin: 16px;
	padding: 14px;
	background: #FDE8E8;
	color: var(--danger);
	border: none;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
	text-align: center;
}

/* Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 400;
	display: none;
	align-items: flex-end;
	justify-content: center;
}

.modal-overlay.show {
	display: flex;
}

.modal-content {
	background: white;
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	padding: 24px;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.modal-handle {
	width: 40px;
	height: 4px;
	background: var(--gray-300);
	border-radius: 2px;
	margin: 0 auto 16px;
}

.modal-title {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

/* Toast */
.toast {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(-100px);
	background: var(--dark);
	color: white;
	padding: 12px 20px;
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 500;
	z-index: 500;
	transition: transform 0.3s ease;
	box-shadow: var(--shadow-lg);
}

.toast.show {
	transform: translateX(-50%) translateY(0);
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

/* Calendar */
.calendar-strip {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 8px 0;
	scrollbar-width: none;
}

.calendar-strip::-webkit-scrollbar {
	display: none;
}

.cal-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	min-width: 52px;
	transition: all 0.2s;
}

.cal-day.active {
	background: var(--primary);
	color: white;
}

.cal-day .day-name {
	font-size: 11px;
	opacity: 0.7;
}

.cal-day .day-num {
	font-size: 16px;
	font-weight: 600;
}

.cal-day.has-event::after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--secondary);
}

.cal-day.active.has-event::after {
	background: white;
}

/* Timeline */
.timeline {
	padding-left: 20px;
	border-left: 2px solid var(--gray-300);
	margin-left: 10px;
}

.timeline-item {
	position: relative;
	padding: 0 0 20px 16px;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-dot {
	position: absolute;
	left: -27px;
	top: 2px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary);
	border: 2px solid white;
	box-shadow: var(--shadow-sm);
}

.timeline-dot.warning { background: var(--warning); }
.timeline-dot.success { background: var(--success); }

.timeline-time {
	font-size: 11px;
	color: var(--gray-500);
	margin-bottom: 4px;
}

.timeline-text {
	font-size: 13px;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 360px) {
	.quick-actions {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}
	.quick-action-icon {
		width: 44px;
		height: 44px;
	}
	.stats-grid {
		gap: 8px;
	}
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: 40px 20px;
}

.empty-state svg {
	width: 80px;
	height: 80px;
	color: var(--gray-300);
	margin-bottom: 16px;
}

.empty-state h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.empty-state p {
	font-size: 13px;
	color: var(--gray-500);
}

/* Loading */
.loading-spinner {
	width: 24px;
	height: 24px;
	border: 3px solid rgba(255,255,255,0.3);
	border-top-color: white;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Tab */
.tab-bar {
	display: flex;
	background: white;
	border-radius: var(--radius-sm);
	padding: 4px;
	margin-bottom: 16px;
	box-shadow: var(--shadow-sm);
}

.tab-item {
	flex: 1;
	padding: 8px;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: var(--gray-500);
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}

.tab-item.active {
	background: var(--primary);
	color: white;
}
