/* --- 全体スタイル --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h1, h2, h3 {
    text-align: center;
    color: #2c3e50;
    font-weight: 300;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 0;
}

/* --- レイアウトコンテナ --- */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;
}

.simulation-area {
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

canvas#isingCanvas {
    display: block;
    background-color: #fff;
}

/* --- コントロールパネル --- */
.controls {
    padding: 20px 25px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    border-radius: 8px;
    min-width: 320px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.control-item {
    margin-bottom: 20px;
}

.control-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

input[type="range"] {
    width: 100%;
    cursor: pointer;
}

.temp-control-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.temp-control-group input[type="range"] {
    flex-grow: 1;
}


/* --- ボタンのスタイル (見やすく改善) --- */
.buttons {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.buttons button,
.temp-control-group button {
    padding: 10px 15px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: white;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease;
}

.buttons button:active,
.temp-control-group button:active {
    transform: scale(0.98); /* クリック時に少し縮む効果 */
}

/* スタートボタン */
#startButton {
    background-color: #27ae60; /* 鮮やかな緑 */
}
#startButton:hover {
    background-color: #229954;
}

/* ストップボタン */
#stopButton {
    background-color: #e74c3c; /* 鮮やかな赤 */
}
#stopButton:hover {
    background-color: #c0392b;
}

/* リセットボタン */
#resetButton {
    background-color: #f39c12; /* 鮮やかなオレンジ */
}
#resetButton:hover {
    background-color: #d35400;
}

/* 臨界温度ボタン */
#criticalTempButton {
    background-color: #3498db; /* 鮮やかな青 */
    padding: 8px 12px;
    font-size: 0.9em;
}
#criticalTempButton:hover {
    background-color: #2980b9;
}


/* --- グラフエリア --- */
.charts-area {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.chart-container {
    flex: 1 1 350px; /* フレックスコンテナ内で伸縮 */
    max-width: 450px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}


/* --- 説明エリア --- */
.explanation {
    margin-top: 40px;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.explanation ol {
    padding-left: 20px;
}

.explanation li {
    margin-bottom: 10px;
}