/* Tabs Block Styles */

.tabs-block-wrapper {
    width: 100%;
    padding: 40px 0;
}

.tabs-container {
    display: flex;
    gap: 40px;
	width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar Styles */
.tabs-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tabs-main-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.tabs-intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-nav-item {
	font-size: 16px;
    display: block;
    line-height: 1.1;
    padding: 15px 20px;
	background: #fff2;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-nav-item:hover {
    background: #04A4C2CC;
}
.tab-nav-item span {
	transition: all 0.3s ease;
	color: #fff;
}
.tab-nav-item.active .tab-name,
.tab-nav-item:hover span {
	color: #fff;
}

.tab-nav-item.active {
    background: #04A4C2CC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: block;
}

/* Content Area Styles */
.tabs-content-area {
    flex: 1;
    min-height: 300px;
    position: relative;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: none;
}

.tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tab-content.fade-in-right {
    animation: fadeInRight 0.5s ease forwards;
}

.tab-content-inner {
    background: #fff2;
	backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tab-content-inner h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.tab-content-inner h4 {
    font-size: 28px;
    line-height: 1.2;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin: 0 0 10px;
}

.tab-content-inner p,
.tab-content-inner li {
	font-size: 20px;
	line-height: 1.5;
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .tabs-sidebar {
        flex: 1;
    }
    
    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 10px;
    }
    
    .tab-nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 12px 16px;
    }
    
    .tab-content {
        position: relative;
    }
    
    .tab-content-inner {
        padding: 20px;
    }
}
