ul.pc_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* gør listen vandret */
    gap: 20px; /* mellemrum mellem punkterne */
}

ul.pc_menu li {
    display: inline-block;
}

ul.pc_menu a {
	display: inline;
    font-weight: bold;
    font-size: 18px;
    color: #4F704C;
    text-decoration: none;
	text-shadow: none;
    transition: text-shadow 0.2s;
}

ul.pc_menu a:hover {
    text-shadow: 0 0 1px #000000;
}

#smart_hovedmenu_div {
	position: absolute;
	top: 46px;
	right: 0;
	width: 200px;
	background-color: #4F704C;
	color: white;
	display: none;
	animation: slideIn 0.3s ease forwards;
	box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.smart_menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.smart_menu li {
	border-bottom: 1px solid white;
}

.smart_menu li:last-child {
	border-bottom: none;
}

.smart_menu a {
	display: block;
	padding: 12px 16px;
	color: white;
	text-decoration: none;
	transition: background 0.2s;
}

.smart_menu a:hover {
	background-color: #3d5e3b;
}