.app-footer {
	width: 100%;
	margin-top: 40px;
	padding: 0 0 24px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}
.checklist-info-bottom {
	display: block;
	font-size: 0.97em;
	color: #555;
	background: #f4f8fb;
	border-left: 4px solid #1877f2;
	border-radius: 6px;
	padding: 10px 16px;
	margin: 14px 0 0 0;
	box-shadow: 0 1px 4px rgba(24,119,242,0.07);
}
.notif-icon {
	font-size: 1.3em;
	margin-right: 8px;
	vertical-align: middle;
	animation: pop 0.4s;
}
.notif-text {
	vertical-align: middle;
}
@keyframes pop {
	0% { transform: scale(0.5); opacity: 0; }
	60% { transform: scale(1.2); opacity: 1; }
	100% { transform: scale(1); opacity: 1; }
}
/* Checklist Info */
.checklist-info {
	display: block;
	font-size: 0.95em;
	color: #c82333;
	background: #fdecea;
	border-radius: 6px;
	padding: 6px 12px;
	margin: 6px 0 0 0;
}
/* Notification Styles */
.notification {
	position: fixed;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	min-width: 280px;
	max-width: 90vw;
	padding: 16px 24px;
	border-radius: 8px;
	font-size: 1em;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	z-index: 9999;
	text-align: center;
	opacity: 0.95;
	transition: opacity 0.3s, top 0.3s;
}
.notification.success {
	background: #e6f9ec;
	color: #218838;
	border: 1px solid #b2e2c7;
}
.notification.error {
	background: #fdecea;
	color: #c82333;
	border: 1px solid #f5c6cb;
}
.notification.info {
	background: #e7f3ff;
	color: #1877f2;
	border: 1px solid #b3d8fd;
}
/* General Styling */
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: #f0f2f5; color: #1c1e21; margin: 0; padding: 20px; }
[v-cloak] { display: none; }
.container { max-width: 900px; margin: 0 auto; background-color: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); padding: 2em; }

/* Header & Navigation */
header h1 { text-align: center; color: #1877f2; }
.week-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2em; }
.week-nav h2 { margin: 0; color: #333; font-size: 1.2em; text-align: center; }
.week-nav button { background-color: #e7f3ff; color: #1877f2; border: none; padding: 10px 15px; border-radius: 6px; cursor: pointer; font-weight: bold; transition: background-color 0.2s; }
.week-nav button:hover { background-color: #d0e7ff; }

/* Progress Section */
.progress-section { margin-bottom: 2em; }
.progress-bar { width: 100%; background-color: #e9ecef; border-radius: 8px; height: 20px; overflow: hidden; }
.progress-bar-inner { height: 100%; width: 0%; background-color: #1877f2; transition: width 0.5s ease-in-out; border-radius: 8px; }

/* Days Container */
.days-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.day-card { background-color: #f9f9f9; padding: 15px; border-radius: 8px; border: 1px solid #ddd; }
.day-card h3 { margin-top: 0; border-bottom: 1px solid #ccc; padding-bottom: 10px; color: #333; }

/* Activity List */
.activity-list { list-style: none; padding: 0; margin: 0; }
.activity-list li { display: flex; align-items: center; padding: 10px 5px; border-radius: 5px; transition: background-color 0.2s; }
.activity-list li:not(:last-child) { border-bottom: 1px solid #eee; }
.activity-list li.completed label { text-decoration: line-through; color: #888; }
.activity-list li.disabled { opacity: 0.6; cursor: not-allowed; }
.activity-list input[type="checkbox"] { margin-right: 12px; width: 18px; height: 18px; cursor: pointer; }
.activity-list label { flex-grow: 1; cursor: pointer; }
.loading { text-align: center; padding: 2em; font-size: 1.2em; color: #777; }
.no-activity { color: #999; text-align: center; padding: 1em; }

.header-controls { text-align: center; margin-bottom: 1em; }
.edit-mode-btn { background-color: #f0ad4e; color: white; border: none; padding: 10px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; margin-right: 10px; }
.analytics-btn { background-color: #17a2b8; color: white; border: none; padding: 10px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; }

.day-header { display: flex; justify-content: space-between; align-items: center; }
.add-btn { background-color: #4caf50; color: white; border: none; border-radius: 50%; width: 28px; height: 28px; font-size: 20px; cursor: pointer; line-height: 28px; }

.activity-list li { position: relative; }
.activity-actions { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; background-color: #f9f9f9; padding: 5px; }
.action-btn { font-size: 12px; padding: 4px 8px; border-radius: 4px; border: 1px solid #ccc; cursor: pointer; }
.action-btn.delete { background-color: #d9534f; color: white; border-color: #d43f3a; }

/* Styling untuk Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; z-index: 1000; }
.modal-content { background-color: white; padding: 2em; border-radius: 8px; width: 90%; max-width: 400px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.modal-content h3 { margin-top: 0; }
.form-group { margin-bottom: 1em; }
.form-group label { display: block; margin-bottom: 0.5em; font-weight: bold; }
.form-group input { width: 100%; padding: 10px; border-radius: 4px; border: 1px solid #ccc; box-sizing: border-box; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 1.5em; }
.modal-actions button { padding: 10px 20px; border-radius: 6px; border: none; font-weight: bold; cursor: pointer; }
.btn-primary { background-color: #1877f2; color: white; }
.btn-secondary { background-color: #e9ecef; color: #333; }


/* === TAMBAHAN CSS UNTUK AUTENTIKASI & NOTES === */
.auth-container { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.auth-box { background-color: white; padding: 2em; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); width: 100%; max-width: 400px; }
.auth-box h2 { text-align: center; color: #1877f2; margin-top: 0; }
.auth-switch { text-align: center; margin-top: 1em; font-size: 0.9em; }
.auth-switch a { color: #1877f2; cursor: pointer; text-decoration: underline; }

/* Analytics Panel Styles */
.analytics-panel { background: #f8f9fa; border-radius: 8px; padding: 20px; margin-bottom: 20px; }
.analytics-summary { display: flex; gap: 20px; margin-bottom: 20px; }
.summary-card { background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); flex: 1; text-align: center; }
.big-number { font-size: 2em; font-weight: bold; color: #1877f2; }
.activity-highlight { font-size: 1.2em; font-weight: bold; color: #28a745; margin: 5px 0; }
.analytics-categories { display: flex; flex-wrap: wrap; gap: 20px; }
.category { background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); flex: 1; min-width: 300px; }
.category h4 { margin-top: 0; color: #495057; }
.category ul { list-style: none; padding: 0; }
.category li { padding: 8px 0; border-bottom: 1px solid #eee; }
.activity-insight { font-size: 0.8em; padding: 2px 6px; border-radius: 10px; margin-left: 8px; }
.activity-insight:contains('🔥') { background: #fff3cd; color: #856404; }
.activity-insight:contains('⚠️') { background: #f8d7da; color: #721c24; }
.error-message { color: #d9534f; text-align: center; font-size: 0.9em; }
.header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1em; flex-wrap: wrap; }
.header-user { display: flex; align-items: center; gap: 10px; }
.logout-btn { background-color: #d9534f; color: white; border: none; padding: 8px 12px; border-radius: 6px; cursor: pointer; }
.notes-section { margin-top: 15px; border-top: 1px solid #eee; padding-top: 10px; }
.notes-section h4 { margin: 0 0 5px 0; font-size: 0.9em; color: #555; }
.notes-section textarea { width: 100%; border: 1px solid #ddd; border-radius: 4px; padding: 8px; font-family: inherit; min-height: 60px; box-sizing: border-box; resize: vertical; }