
.tab-container {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

    .tab-btn:hover {
        color: #2196F3;
    }

    .tab-btn.active {
        color: #2196F3;
        font-weight: 600;
    }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #2196F3;
        }

.tab-content {
    padding: 25px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-pane.active {
        display: block;
    }

    .tab-pane h2 {
        margin-bottom: 15px;
        color: #333;
    }

    .tab-pane p {
        line-height: 1.6;
        color: #666;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
