.page {
    min-height: 100vh;
    background-color: #f1f5f9;
}

.page-container {
    margin: 0 auto;
}

/* header */

.header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* main */

.main {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* page header */

.page-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
}

.page-description {
    color: #64748b;
}

/* footer */

.footer {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}