/* タブボタン用の追加スタイル */
.tab-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.tab-btn {
    cursor: pointer;
    background-color: #5c5c5c;
    transition: background-color 0.3s, opacity 0.3s;
}

.tab-btn.active {
    background-color: #ff77ff;
    /* 選択中の色 */
}

.tab-btn:hover {
    background-color: #dd69dd;
}