:root {
	--primary-color: #1a73e8;
	--primary-dark: #0d47a1;
	--primary-light: #e8f0fe;
	--secondary-color: #f8f9fa;
	--text-color: #202124;
	--light-text: #5f6368;
	--border-color: #dadce0;
	--success-color: #0f9d58;
	--error-color: #d93025;
	--sidebar-width: 250px;
	--header-height: 60px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
	background-color: #f5f5f5;
	color: var(--text-color);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.app-header {
	background-color: var(--primary-color);
	color: white;
	height: var(--header-height);
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 16px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-header h1 {
	font-size: 20px;
	font-weight: 500;
	margin-left: 16px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-weight: bold;
}

.sidebar {
	position: fixed;
	left: 0;
	top: var(--header-height);
	width: var(--sidebar-width);
	height: calc(100vh - var(--header-height));
	background-color: white;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
	padding: 16px 0;
	z-index: 90;
	transition: transform 0.3s ease;
}

.sidebar-hidden {
	transform: translateX(-100%);
}

.sidebar-item {
	padding: 12px 16px;
	display: flex;
	align-items: center;
	color: var(--text-color);
	text-decoration: none;
	transition: background-color 0.2s;
}

.sidebar-item:hover {
	background-color: var(--primary-light);
}

.sidebar-item.active {
	background-color: var(--primary-light);
	color: var(--primary-color);
	border-left: 4px solid var(--primary-color);
}

.sidebar-item i {
	margin-right: 12px;
	width: 24px;
	text-align: center;
}

.main-content {
	margin-left: var(--sidebar-width);
	margin-top: var(--header-height);
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.page-title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 24px;
}

.settings-container {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 600px;
}

.settings-section {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

.settings-section-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 16px;
	color: var(--primary-color);
	display: flex;
	align-items: center;
}

.settings-section-title i {
	margin-right: 8px;
	font-size: 20px;
}

.settings-item {
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.settings-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.settings-item-label {
	font-weight: 500;
}

.settings-item-value {
	color: var(--light-text);
	max-width: 60%;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;
}

.settings-item-action {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.settings-item-action i {
	margin-left: 4px;
}

.settings-item-action:hover {
	color: var(--primary-dark);
}

.settings-item-select {
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background-color: white;
	color: var(--text-color);
}

.settings-item-select:focus {
	outline: none;
	border-color: var(--primary-color);
}

.logout-button {
	background-color: var(--error-color);
	color: white;
	border: none;
	border-radius: 4px;
	padding: 12px 16px;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.2s;
	margin-top: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logout-button:hover {
	background-color: #b31412;
}

.logout-button i {
	margin-right: 8px;
}

.footer-links {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-link {
	color: var(--light-text);
	text-decoration: none;
	font-size: 14px;
}

.footer-link:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.header-right {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.notification-bell {
	position: relative;
	margin-right: 16px;
	cursor: pointer;
}

.notification-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background-color: var(--error-color);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.toggle-sidebar {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	font-size: 24px;
	margin-right: 8px;
	display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.toggle-sidebar {
		display: block;
	}

	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar-hidden {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 0;
		padding: 16px;
		transition: margin-left 0.3s ease;
	}

	.settings-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.settings-item-value, 
	.settings-item-action {
		margin-top: 8px;
		max-width: 100%;
	}
}