/* 既存のスタイルはそのままに、以下を追加 */

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

table th:nth-child(1), table td:nth-child(1) {
    width: 30%; /* Topicの幅 */
}

table th:nth-child(2), table td:nth-child(2) {
    width: 60%; /* Descriptionの幅 */
}

table th:nth-child(3), table td:nth-child(3) {
    width: 10%; /* Actionsの幅 */
}

/* テキストエリアのスタイル調整 */
.description {
    width: 100%;
    resize: vertical;
}
.topic {
    width: 100%;
}




