/* style.css */
body {
    margin: 0;
    display: flex; /* 横並びにする魔法 */
    font-family: sans-serif;
    background-color: #f4f7f6;
    color: #333;
    min-height: 100vh;
}

/* サイドバーのデザイン */
.sidebar {
    width: 200px;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar h2 { margin-top: 0; color: #1abc9c; }
.sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}
.sidebar a:hover { background-color: #34495e; }

/* 右側のメインコンテンツ領域 */
.content {
    flex: 1; /* 残りの幅を全部使う */
    padding: 40px;
}