/**
 * Minimal header + notifications drawer CSS starter
 */

.swapr-app-main {
	min-width: 0;
}

.swapr-app-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 24px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	background: #10141c;
	position: sticky;
	top: 0;
	z-index: 20;
}

.swapr-app-header-title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
}

.swapr-header-icon-button {
	position: relative;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.08);
	background: #1a1f2b;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.swapr-header-icon {
	font-size: 16px;
	line-height: 1;
}

.swapr-notifications-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 380px;
	max-width: 92vw;
	height: 100vh;
	background: #121722;
	border-left: 1px solid rgba(255,255,255,0.08);
	padding: 18px;
	z-index: 50;
	overflow-y: auto;
	box-shadow: -10px 0 30px rgba(0,0,0,0.25);
}

.swapr-notifications-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.swapr-notifications-drawer-title {
	margin: 0;
	font-size: 18px;
}

.swapr-notifications-drawer-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.swapr-notification-item[data-destination-url] {
	cursor: pointer;
}
