@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        
:root {
    --primary-color: #4CAF50;
    --secondary-color: #5850e0;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Inter', "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-light);
    padding-top: 64px; /* ヘッダー分 */
}

/* 席替え結果テーブルのスタイル */
#result table {
    margin: 20px auto;
    border-collapse: collapse;
    width: fit-content;
}

#result td {
    border: 1px solid #ddd;
    padding: 0;
    text-align: center;
    width: 48px;
    height: 48px;
    font-size: 1.1em;
    font-weight: bold;
    background: #fafafa;
    transition: background 0.2s, transform 0.1s;
    border-radius: 6px;
    overflow: hidden;
    line-height: 48px;
}

#result td:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

/* カスタムスクロールバー（履歴用） */
#historyListContainer {
    max-height: 400px; /* 履歴リストの最大高さを設定 */
    overflow-y: auto;
}
#historyListContainer::-webkit-scrollbar {
    width: 6px;
}
#historyListContainer::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
