.loop-tabs-widget {
    width: 100%;
    margin: 20px 0;
}

.tabs {
    display: flex;
    flex-direction: row; /* 可切換為 'column' 來達到垂直佈局 */
    margin-bottom: 15px;
}

.tab {
    padding: 10px 15px;
    margin-right: 5px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab:hover,
.tab.active {
    background-color: #197A3B;
    color: #ffffff;
}

.tabs-content .tab-content {
    display: none;
}

.tabs-content .tab-content.active {
    display: block;
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.loop-tabs-widget.layout-horizontal .tabs {
    flex-direction: row;
}

.loop-tabs-widget.layout-vertical .tabs {
    flex-direction: column;
}
