@import url("../variables.css");


body {
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-base);
    line-height: 1.5;
}

.public-header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #e5e7eb;
    background: var(--color-background);
}

.logo {
    width: 32px;
    margin-right: 8px;
}

.logo-text {
    font-weight: bold;
    font-size: 18px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right a {
    margin-left: 16px;
    text-decoration: none;
}

.header-right .primary {
    font-weight: bold;
}

.sub-header {
    display: flex;
    gap: 20px;
    padding: 10px 24px;
    background: var(--color-background);
    border-bottom: 1px solid #e5e7eb;
}

.sub-header a {
    text-decoration: none;
    color: #374151;
}

.public-content {
    min-height: calc(100vh - 120px);
    padding: 40px;
}