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

.content {
    flex: 1;
}

.header {
    background-color: #f6f6f6;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.header-left img {
    height: 32px;
}

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

.nav {
    display: flex;
    gap: 10px;
}

.nav-item {
    padding: 8px 14px;
    background-color: #eaeaea;
    border: 1px solid #c8ccd1;
    border-radius: 6px;
    text-decoration: none;
    color: #202122;
    font-size: 15px;
    transition: background-color 0.2s;
}

.nav-item:hover {
    background-color: #ddd;
}

.nav-item.active {
    background-color: #ffffff;
    border-bottom: 2px solid #3366cc;
    font-weight: 600;
}

.auth a {
    color: #3366cc;
    text-decoration: none;
    font-size: 14px;
}

.auth a:hover {
    text-decoration: underline;
}

.profile-link {
    font-weight: 600;
}

.footer {
    margin-top: 60px;
    background: #f8f9fa;
    border-top: 1px solid #c8ccd1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;

    text-align: center;
    font-size: 0.9rem;
    color: #54595d;
}

.footer-links {
    margin-bottom: 6px;
}

.footer-links a {
    color: #0645ad;
    text-decoration: none;
    margin: 0 4px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #a2a9b1;
}

.footer-text {
    font-size: 0.85rem;
}
