html, body {
    margin: 0;
    padding: 0;
    background-color: #F3F2F0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Page layout */
.page {
    max-width: 1002px;
    margin: 0 auto 40px;
    background-color: #ffffff;
    padding: 0 0 40px;
}

/* Header */
.app-header {
    border-bottom: 4px solid #ddd;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.logo {
    height: 32px;
}

.app-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.notice-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.notice-box {
    max-width: 80%;
    padding: 20px;
    border: 2px solid #000;
    background-color: #fff;
    text-align: center;
}

.notice-text {
    font-size: 14px;
    line-height: 1.5;
}

.notice-text a {
    text-decoration: underline;
}