html, body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 16px 24px;
}

.topbar__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #111;
}

.page-content {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
    box-sizing: border-box;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
}

input, button {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

button {
    cursor: pointer;
}

.errorlist {
    color: #c62828;
    margin: 0 0 12px 0;
    padding-left: 20px;
}

.muted {
    color: #666;
}

a {
    color: inherit;
}

.site-header {
    font-family: "Fjalla One", sans-serif;
    background: #000000;
    border-bottom: 1px solid #222222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__brand a {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.site-header__nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.site-header__nav a:hover {
    color: #dddddd;
}

.site-header__user {
    padding: 6px 10px;
    border-radius: 8px;
    background: #1f1f1f;
    color: #ffffff;
}

.site-header__user:hover {
    background: #2a2a2a;
}

.site-header__logout {
    margin: 0;
}

.site-header__logout button {
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #ff6262;
    font-size: 20px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
}

.site-header__logout button:hover {
    color: #ff7d7d;
    text-decoration: underline;
}

h1, h2, h3 {
    font-family: "Fjalla One", sans-serif;
    margin: 0px;
}

button {
    font-family: "Fjalla One", sans-serif;
    background-color: black;
    color: white;
    border: none;
    border-radius: 20px; 
}

.bg-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #faf4f5 45%, #dfdfdf 100%);
}

.page-title {
    font-family: "Fjalla One", sans-serif;
    font-size: 60px;
    margin: 0 0 8px 0;
}

.site-header__language {
    margin: 0;
}

.site-header__language select {
    width: auto;
    margin: 0;
    padding: 6px 10px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}