.vtabs-wrapper-fec1a6ec {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.vtabs-header-fec1a6ec {
    text-align: center;
    margin-bottom: 50px;
}

.vtabs-subtitle-fec1a6ec {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e0a95f;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vtabs-title-fec1a6ec {
    font-size: 42px;
    font-weight: 800;
    color: #136d6e;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vtabs-desc-fec1a6ec {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Container Structure */
.vtabs-container-fec1a6ec {
    display: flex;
    gap: 40px;
    position: relative;
    align-items: flex-start;
}

/* Sidebar Navigation */
.vtabs-menu-fec1a6ec {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 45px; /* Added spacing to shift buttons right of the timeline */
}

.vtabs-line-fec1a6ec {
    position: absolute;
    left: 15px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background: rgba(229, 231, 235, 0.4);
    z-index: 1;
}

.vtab-indicator-dot-fec1a6ec {
    position: absolute;
    left: 10px; /* Aligns with center of the 2px timeline line (offset left by 10px for 12px wide dot) */
    width: 12px;
    height: 12px;
    background: #e0a95f;
    border-radius: 50%;
    z-index: 2;
    transition: top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 10px #e0a95f, 0 0 20px #e0a95f;
    pointer-events: none;
}

.vtab-btn-fec1a6ec {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.vtab-btn-fec1a6ec:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.vtab-num-fec1a6ec {
    position: absolute;
    left: -42px; /* Pull left directly over the timeline line */
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    z-index: 3;
    transition: all 0.3s ease;
}

.vtab-btn-fec1a6ec.active-fec1a6ec {
    background: #136d6e;
    border-color: #136d6e;
    box-shadow: 0 10px 25px rgba(19, 109, 110, 0.15);
}

.vtab-btn-fec1a6ec.active-fec1a6ec .vtab-num-fec1a6ec {
    border-color: #e0a95f;
    background: #e0a95f;
    color: #fff;
}

.vtab-meta-fec1a6ec {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.vtab-icon-wrap-fec1a6ec {
    font-size: 20px;
    color: #e0a95f;
}

.vtab-btn-fec1a6ec.active-fec1a6ec .vtab-icon-wrap-fec1a6ec {
    color: #fff;
}

.vtab-text-wrap-fec1a6ec {
    flex-grow: 1;
}

.vtab-title-fec1a6ec {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #136d6e;
    transition: color 0.3s;
}

.vtab-sub-fec1a6ec {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s;
}

.vtab-btn-fec1a6ec.active-fec1a6ec .vtab-title-fec1a6ec {
    color: #fff;
}

.vtab-btn-fec1a6ec.active-fec1a6ec .vtab-sub-fec1a6ec {
    color: rgba(255,255,255,0.7);
}

.vtab-arrow-fec1a6ec {
    font-size: 16px;
    color: #136d6e;
    transition: transform 0.3s, color 0.3s;
}

.vtab-btn-fec1a6ec.active-fec1a6ec .vtab-arrow-fec1a6ec {
    color: #e0a95f;
    transform: translateX(3px);
}

/* Detail Panel */
.vtabs-content-fec1a6ec {
    flex-grow: 1;
}

.vtab-panel-card-fec1a6ec {
    background-color: #136d6e; /* Set right container background to #136d6e */
    border-radius: 20px;
    padding: 50px;
    background-size: cover;
    background-position: center;
    min-height: 480px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.vtab-panel-body-fec1a6ec {
    max-width: 60%;
    z-index: 2;
}

.vtab-p-header-fec1a6ec {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.vtab-p-icon-fec1a6ec {
    font-size: 28px;
    color: #e0a95f;
}

.vtab-p-title-fec1a6ec {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
}

.vtab-p-sub-fec1a6ec {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.vtab-p-desc-fec1a6ec {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* Speech Bubble & Avatar Badges */
.vtab-bubble-wrap-fec1a6ec {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 200px;
    z-index: 3;
}

.vtab-bubble-fec1a6ec {
    background: rgba(19, 109, 110, 0.85);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    backdrop-filter: blur(5px);
}

.vtab-bubble-fec1a6ec::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(19, 109, 110, 0.85);
}

.vtab-badge-fec1a6ec {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 3;
}

.vtab-avatar-fec1a6ec {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0a95f;
}

.vtab-badge-info-fec1a6ec {
    display: flex;
    flex-direction: column;
}

.vtab-badge-name-fec1a6ec {
    font-size: 13px;
    font-weight: 700;
    color: #136d6e;
}

.vtab-badge-status-fec1a6ec {
    font-size: 11px;
    color: #4caf50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot-fec1a6ec {
    width: 6px;
    height: 6px;
    background-color: #4caf50;
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .vtabs-container-fec1a6ec {
        flex-direction: column;
    }
    .vtabs-menu-fec1a6ec {
        flex: none;
        width: 100%;
        padding-left: 0;
    }
    .vtabs-line-fec1a6ec, .vtab-indicator-dot-fec1a6ec {
        display: none;
    }
    .vtab-num-fec1a6ec {
        position: static;
        margin-right: 15px;
    }
    .vtab-panel-body-fec1a6ec {
        max-width: 100%;
    }
    .vtab-bubble-wrap-fec1a6ec {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 20px;
    }
    .vtab-bubble-fec1a6ec::after {
        display: none;
    }
    .vtab-badge-fec1a6ec {
        position: static;
        margin-top: 20px;
        align-self: flex-start;
    }
}
