/* 全体のレイアウト設定 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f7; /* Apple風の薄いグレー */
    color: #1d1d1f;
}

/* 中央のカード部分 */
.container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.status {
    color: #0071e3; /* Cloudflare/Apple風のブルー */
    font-weight: bold;
    margin-top: 1.5rem;
}