.switch-marketplace {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

.switch-item {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.switch-item:hover {
    color: #007bff;
}

.switch-item.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.marketplace-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marketplace-content.active {
    display: block;
    opacity: 1;
}

/* Animation for content switching */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.marketplace-content.active {
    animation: fadeIn 0.4s ease-out forwards;
} 