/* Styles pour les onglets de version */
.version-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.version-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    outline: none;
}

.version-tab:hover {
    background-color: #e0e0e0;
}

.version-tab.active {
    background-color: var(--primary);
    color: white;
}

.version-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.version-content.active {
    display: block;
}

/* Animation pour les transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles responsifs */
@media (max-width: 768px) {
    .version-tabs {
        max-width: 100%;
    }
    
    .version-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
