body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    background: #fafafa;
}

.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 64px;
    display: block;
}

.nav-link,
.nav-button {
    font-size: 0.85rem;
    color: #6b7280;
    text-decoration: none;
}

.nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-spacer {
    flex: 1;
}

.main-content {
    flex: 1;
    padding: 0;
}

.footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-text,
.footer-link {
    font-size: 0.78rem;
    color: #9ca3af;
    text-decoration: none;
}

.language-select {
    font-size: 0.78rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 2px 6px;
    color: #6b7280;
}