
body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

nav {
    position: relative;
    z-index: 50;
}
#mobile-menu a {
    color: #1e40af;
    transition: color 0.2s;
}
#mobile-menu a:hover {
    color: #3b82f6;
}

/* Tooltip styles */
.relative .group-hover\:opacity-100 {
    pointer-events: none;
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}

/* Language switcher in navbar */
#lang-switch {
	background: transparent;
	border: 1px solid rgba(0,0,0,0.06);
	color: inherit;
	padding: .35rem .6rem;
	border-radius: .375rem;
	font-weight: 600;
}
@media (min-width: 768px) {
	#lang-switch { margin-left: .5rem; }
}

/* Dropdown styles for language selector */
.lang-dropdown {
	position: relative;
	display: inline-block;
}
.lang-dropdown-toggle {
	background: transparent;
	border: 1px solid rgba(0,0,0,0.06);
	padding: .35rem .6rem;
	border-radius: .375rem;
	font-weight: 600;
	cursor: pointer;
}
.lang-dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 0;
	background: white;
	border: 1px solid rgba(15,23,36,0.06);
	box-shadow: 0 6px 20px rgba(2,6,23,0.08);
	border-radius: .5rem;
	min-width: 10rem;
	overflow: hidden;
	z-index: 60;
}
.lang-dropdown-menu.hidden { display: none; }
.lang-dropdown-menu li {
	list-style: none;
	padding: .6rem .9rem;
	cursor: pointer;
	white-space: nowrap;
}
.lang-dropdown-menu li:hover {
	background: #f1f5f9;
}