body { 
    font-family: sans-serif; 
    padding: 20px; 
}

/* ボタンのグループ用の余白を追加 */
.control-group {
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    font-size: 1.1em;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* ステータスメッセージ用のスタイル */
.status-box {
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

/* 読み出し結果エリアのスタイル */
.result-box {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f0f8ff;
    border: 1px solid #cce7ff;
    border-radius: 5px;
    font-size: 1.2em;
}

/* 中身が空の時は枠を隠す */
.result-box:empty {
    display: none;
}

.tone-name {
    font-weight: bold;
    color: #0056b3;
    font-size: 1.5em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: white;
}

th, td {
    border: 1px solid #cce7ff;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #e6f2ff;
    color: #0056b3;
    width: 40%;
}