.wcht-tabs-wrapper {
    margin: 30px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wcht-tabs-header {
    display: flex;
    background: #ff8484;
    border-bottom: 1px solid #dee2e6;
    overflow-x: auto;
}

.wcht-tab-button {
    padding: 15px 25px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.wcht-tab-button:hover {
    background: #e9ecef;
    color: #495057;
}

.wcht-tab-button.wcht-active {
    color: #007bff;
    border-bottom-color: #007bff;
    background: #fff;
}

.wcht-tabs-content {
    padding: 30px;
}

.wcht-tab-panel {
    display: none;
    animation: wcht-fadeIn 0.5s ease-in;
}

.wcht-tab-panel.wcht-active {
    display: block;
}

.wcht-tab-content-inner {
    line-height: 1.6;
}

.wcht-tab-content-inner p {
    margin-bottom: 15px;
}

.wcht-tab-content-inner ul,
.wcht-tab-content-inner ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.wcht-tab-content-inner li {
    margin-bottom: 8px;
}

@keyframes wcht-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wcht-tabs-header {
        flex-direction: column;
    }
    
    .wcht-tab-button {
        text-align: left;
        border-bottom: 1px solid #dee2e6;
        border-left: 3px solid transparent;
    }
    
    .wcht-tab-button.wcht-active {
        border-left-color: #007bff;
        border-bottom-color: #dee2e6;
    }
    
    .wcht-tabs-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .wcht-tab-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .wcht-tabs-content {
        padding: 15px;
    }
}