.cfw-widget {
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
}

.cfw-headline {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cfw-subheadline {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}


/* Tabs */

.cfw-tab-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #ddd;
}

.cfw-tab-nav li {
    margin: 0 20px;
    padding: 8px 0;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.cfw-tab-nav li.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #0073e6;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}


/* Tab Panes */

.cfw-tab-pane {
    display: none;
}

.cfw-tab-pane.active {
    display: block;
}


/* Scene block */

.cfw-scene {
    position: relative;
    width: 100%;
    height: 300px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.cfw-scene-label {
    font-size: 26px;
    font-weight: 500;
}

.cfw-scene-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.cfw-scene-img.active {
    display: block;
}

.cfw-scene-size {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
}


/* Scene Buttons */

.cfw-scene-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cfw-scene-buttons button {
    background: #f1f1f1;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    color: #000;
}

.cfw-scene-buttons button.active,
.cfw-scene-buttons button:hover {
    background: #0073e6;
    color: #fff;
}