﻿body {
	margin: 0;
	padding: 0;
}

.topbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	padding: 0.5rem 1rem;
	background: #f4f4f4;
	border-bottom: 1px solid #ddd;
	font-family: sans-serif;
	font-size: 0.9em;
}

.topbar-user {
	color: #444;
}

.topbar-btn {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border: 1px solid;
	background: #0055aa;
	color: white;
	border-radius: 4px;
	text-decoration: none;
}

.topbar-btn:hover {
	background: #0044aa;
}

.topbar-admin-menu {
	position: relative;
	margin-right: auto;
}

.topbar-admin-btn {
	list-style: none;
	cursor: pointer;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-size: 1rem;
	color: #444;
	user-select: none;
}

.topbar-admin-btn::-webkit-details-marker,
.topbar-admin-btn::marker {
	display: none;
}

.topbar-admin-btn:hover {
	background: #e0e0e0;
}

.topbar-admin-dropdown {
	position: absolute;
	left: 0;
	top: calc(100% + 0.25rem);
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	min-width: 12rem;
	z-index: 100;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.topbar-admin-item {
	padding: 0.5rem 1rem;
	text-decoration: none;
	color: #333;
	white-space: nowrap;
}

.topbar-admin-item:hover {
	background: #f0f0f0;
}
