/* レイアウトの根幹 */
.header {
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #161b22;
    border-bottom: 1px solid #30363d;
}

.header-left {
    display: flex;
    align-items: baseline; /* タイトルとロゴの底辺を合わせる */
}

/* タイトルの文字サイズは維持 */
.editor-title {
    font-size: 14px;
    font-weight: bold;
    color: #c9d1d9;
    margin-right: 12px;
}

/* 右側に小さく表示するロゴ */
.mini-logo {
    font-size: 11px;
    color: #8b949e;
    padding: 2px 6px;
    border: 1px solid #30363d;
    border-radius: 4px;
}

/* セットアップ画面の中央ロゴ */
.setup-logo {
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.setup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.setup-card {
    width: 400px;
    padding: 40px;
    background: #161b22;
    border-radius: 8px;
    text-align: center;
}
