: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;
}

.greeting {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}

.balance-card {
	background-color: var(--primary-color);
	color: white;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.balance-label {
	font-size: 14px;
	margin-bottom: 8px;
	opacity: 0.9;
}

.balance-amount {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 8px;
}

.balance-conversion {
	font-size: 16px;
	opacity: 0.9;
	margin-bottom: 16px;
}

.currency-selector {
	display: inline-flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 14px;
	cursor: pointer;
}

.currency-selector i {
	margin-left: 8px;
}

.action-buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.action-button {
	flex: 1;
	background-color: white;
	border-radius: 8px;
	padding: 16px;
	text-align: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: var(--text-color);
	transition: transform 0.2s, box-shadow 0.2s;
}

.action-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.action-button i {
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 8px;
	display: block;
}

.notification-banner {
	background-color: var(--primary-light);
	border-left: 4px solid var(--primary-color);
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
}

.notification-icon {
	font-size: 24px;
	margin-right: 16px;
	color: var(--primary-color);
}

.notification-content {
	flex: 1;
}

.notification-title {
	font-weight: 500;
	margin-bottom: 4px;
}

.notification-message {
	font-size: 14px;
	color: var(--light-text);
}

.section-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.view-all {
	font-size: 14px;
	color: var(--primary-color);
	text-decoration: none;
}

.transaction-list {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.transaction-item {
	padding: 16px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
}

.transaction-item:last-child {
	border-bottom: none;
}

.transaction-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary-light);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	flex-shrink: 0;
}

.transaction-details {
	flex: 1;
}

.transaction-title {
	font-weight: 500;
	margin-bottom: 4px;
}

.transaction-date {
	font-size: 12px;
	color: var(--light-text);
}

.transaction-amount {
	font-weight: 500;
}

.amount-sent {
	color: var(--error-color);
}

.amount-received {
	color: var(--success-color);
}

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

.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;
}

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

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

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

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

	.action-buttons {
		flex-wrap: wrap;
	}

	.action-button {
		flex-basis: calc(50% - 8px);
	}
}